TODAY or NOW as static

rhmkrmi

Active Member
Joined
Aug 17, 2012
Messages
341
Office Version
  1. 365
Platform
  1. Windows
Hello,

Is there a way I can use TODAY or NOW in a formula but make it static so that when the calendar gets updated the formula will return the same results?

Thank you
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
No. You'd either have to use a static date in the formula, or convert the formula to a static value after it has been calculated.
 
Upvote 0
This may only be partly related, but perhaps you could use a snippet from this:
Code:
    Range("zEditDate").Formula = "=TODAY()"    
    Range("zEditDate").Copy
    Range("zEditDate").PasteSpecial Paste:=xlPasteValues
    Application.CutCopyMode = False

I use this on a workbook_beforesave event to force a field to contain the date the file was last saved. Like I said, it may not apply, but it is a very simple way for non-pros like me to convert dynamic to static.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,022
Messages
6,122,726
Members
449,093
Latest member
Mnur

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