Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Is is possible to animate text in excel? a crawling footnote or moving header? |
#2
![]() |
|||
|
|||
![]()
Yes, it is possible to animate text in Excel. You can create a crawling footnote or moving header by using the animation feature in Excel.
Here are the steps to create a crawling footnote:
Here are the steps to create a moving header:
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Vijay,
the following macro will animate in cell B21 the contents of cell B20. It will insert some spaces before and after. It will create a marquee effect. The loop For j = 1 to 300000 ... Next j is for delay. You can control the delay by changing the 300000. Sub ANIMTEXT() st = " " & Range("B20") & " " i = 0 While True Range("B21").Value = Mid(st, i Mod Len(st) + 1, 10) For j = 1 To 300000 k = k + 1 Next j i = i + 1 Wend End Sub HTH Kostis Vezerides Vijay_India wrote: Hi, Is is possible to animate text in excel? a crawling footnote or moving header? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That is totally beyond COOL.............I grabbed it for my goodie-box.
Thanks for posting it Kostis Vaya con Dios, Chuck, CABGx3 "cn.stanton" wrote: Vijay, the following macro will animate in cell B21 the contents of cell B20. It will insert some spaces before and after. It will create a marquee effect. The loop For j = 1 to 300000 ... Next j is for delay. You can control the delay by changing the 300000. Sub ANIMTEXT() st = " " & Range("B20") & " " i = 0 While True Range("B21").Value = Mid(st, i Mod Len(st) + 1, 10) For j = 1 To 300000 k = k + 1 Next j i = i + 1 Wend End Sub HTH Kostis Vezerides Vijay_India wrote: Hi, Is is possible to animate text in excel? a crawling footnote or moving header? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Chuck,
glad you liked it. Fellow postmen's remarks are always appreciated. Kostis CLR wrote: That is totally beyond COOL.............I grabbed it for my goodie-box. Thanks for posting it Kostis Vaya con Dios, Chuck, CABGx3 "cn.stanton" wrote: Vijay, the following macro will animate in cell B21 the contents of cell B20. It will insert some spaces before and after. It will create a marquee effect. The loop For j = 1 to 300000 ... Next j is for delay. You can control the delay by changing the 300000. Sub ANIMTEXT() st = " " & Range("B20") & " " i = 0 While True Range("B21").Value = Mid(st, i Mod Len(st) + 1, 10) For j = 1 To 300000 k = k + 1 Next j i = i + 1 Wend End Sub HTH Kostis Vezerides Vijay_India wrote: Hi, Is is possible to animate text in excel? a crawling footnote or moving header? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You are most deserving..............BTW, might it be modified to operate as a
change event macro so it will start and run if the value in A1 = 9 and stop if it's not........I tried, but was not successful...... Vaya con Dios, Chuck, CABGx3 "cn.stanton" wrote: Chuck, glad you liked it. Fellow postmen's remarks are always appreciated. Kostis CLR wrote: That is totally beyond COOL.............I grabbed it for my goodie-box. Thanks for posting it Kostis Vaya con Dios, Chuck, CABGx3 "cn.stanton" wrote: Vijay, the following macro will animate in cell B21 the contents of cell B20. It will insert some spaces before and after. It will create a marquee effect. The loop For j = 1 to 300000 ... Next j is for delay. You can control the delay by changing the 300000. Sub ANIMTEXT() st = " " & Range("B20") & " " i = 0 While True Range("B21").Value = Mid(st, i Mod Len(st) + 1, 10) For j = 1 To 300000 k = k + 1 Next j i = i + 1 Wend End Sub HTH Kostis Vezerides Vijay_India wrote: Hi, Is is possible to animate text in excel? a crawling footnote or moving header? |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
I can't seem to get this to work. Am I supposed to be able to enter any text into the cell and it animates it?? Thanks Louise "cn.stanton" wrote: Vijay, the following macro will animate in cell B21 the contents of cell B20. It will insert some spaces before and after. It will create a marquee effect. The loop For j = 1 to 300000 ... Next j is for delay. You can control the delay by changing the 300000. Sub ANIMTEXT() st = " " & Range("B20") & " " i = 0 While True Range("B21").Value = Mid(st, i Mod Len(st) + 1, 10) For j = 1 To 300000 k = k + 1 Next j i = i + 1 Wend End Sub HTH Kostis Vezerides Vijay_India wrote: Hi, Is is possible to animate text in excel? a crawling footnote or moving header? |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Apologies, I've got it to work now. when you want it to stop, do you just
Escape? It 'locks' the rest of the worksheet whilst it is running. Louise "cn.stanton" wrote: Vijay, the following macro will animate in cell B21 the contents of cell B20. It will insert some spaces before and after. It will create a marquee effect. The loop For j = 1 to 300000 ... Next j is for delay. You can control the delay by changing the 300000. Sub ANIMTEXT() st = " " & Range("B20") & " " i = 0 While True Range("B21").Value = Mid(st, i Mod Len(st) + 1, 10) For j = 1 To 300000 k = k + 1 Next j i = i + 1 Wend End Sub HTH Kostis Vezerides Vijay_India wrote: Hi, Is is possible to animate text in excel? a crawling footnote or moving header? |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Louise,
I did not think of the locking aspect at all, I just scripted a quick macro to do the marquee. Later today, when I am free, I will come up with a more complete solution that does not lock the spreadsheet (and has a different manner for activating). Regards, Kostis Vezerides Louise wrote: Apologies, I've got it to work now. when you want it to stop, do you just Escape? It 'locks' the rest of the worksheet whilst it is running. Louise "cn.stanton" wrote: Vijay, the following macro will animate in cell B21 the contents of cell B20. It will insert some spaces before and after. It will create a marquee effect. The loop For j = 1 to 300000 ... Next j is for delay. You can control the delay by changing the 300000. Sub ANIMTEXT() st = " " & Range("B20") & " " i = 0 While True Range("B21").Value = Mid(st, i Mod Len(st) + 1, 10) For j = 1 To 300000 k = k + 1 Next j i = i + 1 Wend End Sub HTH Kostis Vezerides Vijay_India wrote: Hi, Is is possible to animate text in excel? a crawling footnote or moving header? |
#10
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
That's very kind of you to offer but please don't spend too much time on it. I just wondered if may be I had done something wrong. Very clever macro!! Thanks again, Louise. "vezerid" wrote: Louise, I did not think of the locking aspect at all, I just scripted a quick macro to do the marquee. Later today, when I am free, I will come up with a more complete solution that does not lock the spreadsheet (and has a different manner for activating). Regards, Kostis Vezerides Louise wrote: Apologies, I've got it to work now. when you want it to stop, do you just Escape? It 'locks' the rest of the worksheet whilst it is running. Louise "cn.stanton" wrote: Vijay, the following macro will animate in cell B21 the contents of cell B20. It will insert some spaces before and after. It will create a marquee effect. The loop For j = 1 to 300000 ... Next j is for delay. You can control the delay by changing the 300000. Sub ANIMTEXT() st = " " & Range("B20") & " " i = 0 While True Range("B21").Value = Mid(st, i Mod Len(st) + 1, 10) For j = 1 To 300000 k = k + 1 Next j i = i + 1 Wend End Sub HTH Kostis Vezerides Vijay_India wrote: Hi, Is is possible to animate text in excel? a crawling footnote or moving header? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
I am using wrap text in excel, so why isn't all my text wrapping? | Excel Discussion (Misc queries) | |||
How paste text from note pad to excel w/o using (Text to column) f | Excel Worksheet Functions | |||
Text records in Excel | Excel Discussion (Misc queries) | |||
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER | New Users to Excel | |||
Autofitting a row | Excel Discussion (Misc queries) |