Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
UABCSA
 
Posts: n/a
Default Is there a way to animate cell(s) boards in Excel?

Is there a way to animate cell(s) boards in Excel? I think I saw a
spreadsheet in a meeting (overhead projector on a laptop) that had an
animated border in an area of cells of intrest. Please note that this was
NOT a copy, cut, etc command or operation. It was a stand alone feature that
was there when the file opened. Is this possible. Could it be possible that
this was another spreadsheet program?
  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

There's nothing built into excel that does this kind of thing.

I guess you could write a macro that adds a border to the current selection and
then toggles it on/off every few moments.



UABCSA wrote:

Is there a way to animate cell(s) boards in Excel? I think I saw a
spreadsheet in a meeting (overhead projector on a laptop) that had an
animated border in an area of cells of intrest. Please note that this was
NOT a copy, cut, etc command or operation. It was a stand alone feature that
was there when the file opened. Is this possible. Could it be possible that
this was another spreadsheet program?


--

Dave Peterson
  #3   Report Post  
Piranha
 
Posts: n/a
Default


UABCSA Wrote:
Is there a way to animate cell(s) boards in Excel? I think I saw a
spreadsheet in a meeting (overhead projector on a laptop) that had an
animated border in an area of cells of intrest. Please note that this
was
NOT a copy, cut, etc command or operation. It was a stand alone
feature that
was there when the file opened. Is this possible. Could it be
possible that
this was another spreadsheet program?

Hi,
This code will Flash the text from one color to another continousley.
Its set for Red and White now. You can convert it to borders or any
colors you want.
-----
Select your cells, go to format/style put in the name - Flash - set
your
formating and click ok. then run your macro from a standard Module.
-----
Dim NextTime As Date

Sub Flash()
Application.ScreenUpdating = False
NextTime = Now + TimeValue("00:00:01")
With ActiveWorkbook.Styles("Flash").Font
If .ColorIndex = 2 Then .ColorIndex = 3 Else .ColorIndex = 2
End With
Application.OnTime NextTime, "Flash"
Application.ScreenUpdating = True
End Sub

Sub StopIt()
Application.ScreenUpdating = False
Application.OnTime NextTime, "Flash", schedule:=False
ActiveWorkbook.Styles("Flash").Font.ColorIndex = xlAutomatic
Application.ScreenUpdating = True
End Sub
-----
This is not my code, but it works.
Hope this will help you.
Dave


--
Piranha
------------------------------------------------------------------------
Piranha's Profile: http://www.excelforum.com/member.php...o&userid=20435
View this thread: http://www.excelforum.com/showthread...hreadid=374670

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2003 will not display color fonts or color fill cells DaveC Excel Worksheet Functions 1 April 11th 05 04:38 PM
How can I have excel search and add multiple cells to find a targe Blakepro Excel Discussion (Misc queries) 1 April 1st 05 02:37 AM
Excel cannot shift nonblank cells Mr. Maz. Excel Discussion (Misc queries) 2 March 17th 05 11:10 PM
How do I merge cells in Excel, like just 2 cells to make one big . chattacat Excel Discussion (Misc queries) 2 January 19th 05 04:25 PM
How to get excel cells to change colors depending on value KV Excel Worksheet Functions 2 November 25th 04 09:50 AM


All times are GMT +1. The time now is 08:44 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"