Auto Calculate is on, but I still need to press F9

Kourada

New Member
Joined
Apr 8, 2002
Messages
17
I've got a fairly large spreadsheet, with many formulas. Although the AutoCalc is set, the sheet won't Calculate unless I press the F9 key. Many of the formulas in the worksheet are dependant on the =Now() formula auto-updating when the time changes.

I need the cells to update when the time changes (i.e. when the "=NOW()" changes), but the time ("=NOW()") won't change unless I press F9.

How can I make the sheet automaticly press F9 at certain time intervals, when the time intervals on the sheet won't change? o_O

Thanks.....
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Thanks for the quick reply.

I've already installed the Service Releases, but that didn't seem to help. I've replaced the "=" signs in the workbook with new "=" signs; that did seem solve the prolem. I guess I'll simply have to do that from time to time.
 
Upvote 0
What exactly did you do to get =NOW() function to update without pressing F9? The only idea I had was using OPC to display the system time and date.
 
Upvote 0
Hey there,

Drop this into a new module:

Option Explicit
Dim NextTick
Sub SimulateHittingF9()
Range("A1") = Now
NextTick = Now + TimeValue("00:00:01")
Application.OnTime NextTick, "SimulateHittingF9"
End Sub

This'll put the current datetime into A1 and update it every second using the OnTime method.

Hope that helps,


-B
 
Upvote 0

Forum statistics

Threads
1,214,943
Messages
6,122,369
Members
449,080
Latest member
Armadillos

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