Summers2007
New Member
- Joined
- Dec 12, 2022
- Messages
- 2
- Office Version
- 365
- Platform
- Windows
I need help creating a countdown from $3,000,000 that auto updates every second to a lower number. I have the macro below that works for updating the sheet every second and it works. But I need the $3,000,000 to drop by $3.94 every second. Any ideas on a simple formula that will allow it to auto-update? Thanks in advance.
Sub CalculateNow()
'a5'
'i.e.
Calculate 'This recalculates all your cell values
Application.OnTime Now + TimeValue("00:00:01"), "CalculateNow"
End Sub
Sub CalculateNow()
'a5'
'i.e.
Calculate 'This recalculates all your cell values
Application.OnTime Now + TimeValue("00:00:01"), "CalculateNow"
End Sub