Can i update without pressing F9?

Wicked_Clown

New Member
Joined
Mar 13, 2009
Messages
2
Ok i don't know if this has been asked before but i will ask it now. i recently made my own countdown on my excel using simple math formulas but i have it go all the way to seconds and if i want the seconds to be running while I'm looking at it i need to hold F9. This makes the whole thing update but i was wondering if there was something i could do to make it update its self. oh and I'm kinda new to Excel so please explain it well. Thanks for reading
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
G'day,

Change the calculation to automatic.

Tools/options/Calculation, check the button next to automatic.
 
Upvote 0
someting like this ? paste these code into the "ThisWorkbook" ,if you don't know about the macro then these code will be helpless
Rich (BB code):
PrivateSub Workbook_Open()
 Application.OnTime Now +TimeValue("00:00:01"), "GetTime"
End Sub
 
<!--
 
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/
 
-->Sub GetTime()
 Application.OnTime Now +TimeValue("00:00:01"), "Refresh"            
End Sub
 
Sub Refresh()
  Range("a1").Value =Format(Now(), "hh:mm:ss")
  Call GetTime
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,196,409
Messages
6,015,104
Members
441,870
Latest member
kojack

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