Excel Static Date

raajnabriz

Board Regular
Joined
Jun 11, 2014
Messages
112
Dear Sir,

[FONT=open_sansregular]I am trying to format a date cell to return todays date if a cell in the same row is marked "Received" using the IF formula.

[/FONT]
=IF(F1 = "RECEIVED", TODAY(),"")

[FONT=open_sansregular]But the issue in the above formula is when I open the file the next day the date changes, I want the date to be static, how to get that. Any ideas?

Thanks,
Raaj.
[/FONT]
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hey Raaj,

You would have to copy the cell and paste it as values after it picks up today's date, then when you open the file tomorrow it will display yesterdays date.
 
Upvote 0
Sadly, I am doing just that all these years, but thought there might be something new around.

Hope someone comes along with a new idea.

Thanks,
Raaj.
 
Upvote 0
maybe adapt this:

Code:
B2: =IF(A2="","",IF(B2="",NOW(),B2))
Iterative calculation must be enabled
screenshot-11.png
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,214
Messages
6,123,664
Members
449,114
Latest member
aides

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