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!
I've found Paul Newcome's mega post on calculating hours and from that have successfully created the total number of hours worked. But I am trying to have it calculate net hours worked after taking away any unpaid break. Breaks will be 30 mins or 60 mins. I've seen other posts from people asking about it but haven't seen…
I have an automated workflow set up to run weekly and request an update when the project is in certain statuses. The automation only ran once and now it's not working even though I have it set up to run weekly. I need help troubleshooting why this isn't working.
Hello! I am attempting to create a dashboard widget that shows me how much budget we are spending in each segment, and in what category. The source sheet contains these columns… "Budget" - text/number column "Category" - dropdown list (restricted to list values only) "Segment" - dropdown list (allows multiple values per…