Making a cell flash

steelers777

New Member
Joined
Sep 23, 2006
Messages
16
If I have text typed into a cell how do I make it flash? Also, if I have a score that is calculated in cells how do I make the winners name turn a different color (red)?

For example,

Sam 35 Kenny 43

I have made the excel document where the point totals will combine the scores or points from previous pages and total them on the last page. However, I would like the persons name with the highest point total to turn their name a different color than black (red).

Thanks for your help!
 
Check the formula in conditional formatting. Make sure that Excel has not added anything or changed what you typed in - for example adding "
 
Upvote 0

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
under Conditional Formating > did you click on the format button and choose a format (like Bold, maybe)
 
Upvote 0
Under the conditional formatting it still has:

=MOD(SECOND(NOW()),2)=1


Would it make it not work if I had also went under FORMAT then CELL and went under alignment and clicked on Merge Cell and Wrap Text then selected the Yellow Bold text on black background?
 
Upvote 0
Try doing the conditional format in another cell that isn't merged or formatted. Then run the code and see if that works. Any cell with that conditional format should flash once a second when that code is run.

I have tested this and it works for me - Excel 2003 and Windows XP.
 
Upvote 0
Ok, I will try this now. Let me know if you'd like to see the document I'm trying to get this to work on and I can send it to you. I'll try your suggestion though.
 
Upvote 0
steelers777

I have just tested this out myself. You have to set your formats in the Condtional Format box.

Would it make it not work if I had also went under FORMAT then CELL and went under alignment and clicked on Merge Cell and Wrap Text then selected the Yellow Bold text on black background?

I tried that and it does not work by setting formats from there.
 
Upvote 0
VoG II,

Is there a way to modify the code so it would blink just, say 10 times then automatically go to the EndProcess.
 
Upvote 0
Hi hawaiian harry

Try

Code:
Dim NextTime As Date, I As Byte
Sub RepeatOneSec()
    ActiveWorkbook.Styles("normal").NumberFormat = _
        ActiveWorkbook.Styles("normal").NumberFormat
    NextTime = Now() + TimeSerial(0, 0, 1)
    I = I + 1
    If I > 20 Then Exit Sub
    Application.OnTime NextTime, "RepeatOneSec"
End Sub

this gives 10 'off/on' cycles.
 
Upvote 0

Forum statistics

Threads
1,216,128
Messages
6,129,030
Members
449,482
Latest member
al mugheen

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top