Visual Popup when formula recalculates

iansilv

New Member
Joined
Mar 22, 2004
Messages
24
I have something I am doing for a charity auction- I have two computer displays, and I want each one to have an excel spreadsheet on it. One will be where I update the auction bids, the other will be where the formulas calculate the amounts.

Is it possible for the amounts to "popout" for a second when the values re-click? Or maybe change to bold for a second?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Hi,

Is it possible for the amounts to "popout" for a second when the values re-click? Or maybe change to bold for a second?

Is is just one figure in a specified cell that you want to 'pop out'?? Or will there be several figure that you want to popout only if they change??

The first is no problem - do you know how to insert code into the 'this workbook' module in VB? If so - insert this:

Code:
Private Sub Workbook_SheetCalculate(ByVal Sh As Object)
    
    Range("a1").Interior.ColorIndex = 44
    Range("a1").Font.Bold = True
    Application.Wait (Now + TimeValue("0:00:1"))
    Range("a1").Interior.ColorIndex = 0
    Range("a1").Font.Bold = False

End Sub

This will make cell A1 bold and go an amber colour for one second and then go back to no colour and not bold...

Pleease note this will trigger every time the sheet recalculates, whether or not the value of that cell changes.

Hope that's what you're after - if not give me a shout =D


A.
 
Upvote 0

Forum statistics

Threads
1,214,929
Messages
6,122,315
Members
449,081
Latest member
tanurai

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