PC Review


Reply
Thread Tools Rate Thread

HOW TO 'BLINK' A FIGURE INSTEAD OFF BOLDING THE FIGURE

 
 
Nad.Engoor
Guest
Posts: n/a
 
      30th Dec 2008
Text Effects - similar type in Word
 
Reply With Quote
 
 
 
 
Shane Devenshire
Guest
Posts: n/a
 
      30th Dec 2008
Hi,

There is no feature like this in Excel.

FYI - this feature has been removed from Word in 2007.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Nad.Engoor" wrote:

> Text Effects - similar type in Word

 
Reply With Quote
 
Héctor Miguel
Guest
Posts: n/a
 
      30th Dec 2008
hi, Nad.Engoor !

> Text Effects - similar type in Word


see: http://www.cpearson.com/excel/BlinkingText.aspx

or... there is a wise-tricky procedure (posted by KL in spanish ng sometime ago)...
(and with minor changes based on Thomas Jansen -1999- post)...
that let's you to preserve the undo-levels, and you might want to give it a try...

if any doubts (or further information)... would you please comment ?
hth,
hector.

assuming "the figure" is in B1 and you need it to flash if it's value is greater than 5

1) select [B1]... -> (menu) format / conditional format...
formula: -> =(b1>5)*(mod(second(now()),2)=0)
format: -> apply formats as needed/wished/...

2) copy/paste the following lines:
===
a) in a general code module:
===
Option Private Module
Public Sequence As Date
Sub StartBlinking()
Sequence = Now + TimeSerial(0, 0, 1)
Worksheets(1).Range("b1").Calculate ' modify/adapt/... worksheet's index/name as appropriate
Application.OnTime Sequence, "StartBlinking"
End Sub
Sub StopBlinking()
On Error Resume Next
Application.OnTime Sequence, "StartBlinking", Schedule:=False
End Sub
===
b) in ThisWorkbook code module:
===
Private Sub Workbook_Open()
StartBlinking
End Sub
Private Sub Workbook_BeforeClose(Cancel As Boolean)
StopBlinking
End Sub


 
Reply With Quote
 
JE McGimpsey
Guest
Posts: n/a
 
      30th Dec 2008
While you've been given a couple of ways of doing this, I *highly*
recommend that you NOT do it.

If you have government clients (in the US) that use your workbook, it
may even be illegal due to its ability to trigger epileptic seizures:

http://www.section508.gov/index.cfm?...ID=12#Software

besides, it's irritating as hell.

In article <0E602978-5EBB-4DA5-8952-(E-Mail Removed)>,
Nad.Engoor <(E-Mail Removed)> wrote:

> Text Effects - similar type in Word

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Table/figure caption: Bold label & table/figure number Paul Microsoft Word Document Management 18 17th Jul 2008 12:00 PM
Word 2007 - cross reference to figure reproduces figure plus capti =?Utf-8?B?Qm9yaXM=?= Microsoft Word Document Management 2 7th Sep 2007 09:48 AM
how do I link the text about figure number to the figure caption? =?Utf-8?B?Y3J5c3RhbHhk?= Microsoft Word Document Management 1 3rd Apr 2006 06:58 PM
Format Figure Dollar to Text Figure Michael Chong Microsoft Excel Discussion 1 26th Oct 2004 11:42 AM
Auto Convert -figure to (figure) =?Utf-8?B?T25n?= Microsoft Word Document Management 5 3rd Jul 2004 02:13 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:04 AM.