Sign in to join the conversation:
Hello,
I'm having trouble finalizing IF statement for the following:
If "Approved By" is NOT blank, the Date Approved = Today's Date
Thank you for the community support in advance.
Hi,
Try something like this.
=IF(ISBLANK([Approved By]@row); TODAY())
The same version but with the below changes for your and others convenience.
=IF(ISBLANK([Approved By]@row), TODAY())
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
=IF(NOT(ISBLANK([Approved By]@row)), TODAY())
worked for what I was looking for. Thank you for the support!
I missed the NOT part!
Glad you got it working!
Happy to help!
Hello I am looking to create a Smartsheet formula that returns the following result: Column A "Created Date" - this column type is a Created date and show results with date and time Column B "Received Date" - this column would round up the "Created Date" and just show date, no time. If the "Created Date" was after 2:00pm…
Trying to create automatic sequential ID numbers based on the date to ship and where the sample goes. Have a general auto numbering Row ID, have (thanks to reading other questions and responses) figured out how to designate a year. Now I would like to number the Internal (INT) shipments separately from the external…
I have a sheet that has data displayed both horizontal and vertical. The primary data is horizontal (date) with information below each date, 4 rows of data. After the data the dates for the next set of data is horizontal with information below it vertical. 1/5/26 1/12/26 1/19/26 1/26/26 JP OS TT LL OS RT RR SS That data…