Sign in to join the conversation:
Hello!
I'm trying to trigger the flag in the overdue column if we've missed the proposed response date. My formula is calculating, but it's not turning the flag on. What am I doing wrong?
=IF([PROPOSED RESPONSE DATE]2 < TODAY(), "1")
Try Removing the quotes from around the "1".
=IF([PROPOSED RESPONSE DATE]2 < TODAY(), 1)
Okay, I figured out the flag part. However, now it's immediately flagging if a date hasn't been entered yet. Here's the formula that I'm using. . .
=IF(TODAY() > [PROPOSED RESPONSE DATE]@row, 1, 0)
Please help! Thank you!!!
That's because blank date fields are considered less than any entered date (nothing is less than something kind of thing). We can use an AND statement to include the criteria of it being an actual date.
=IF(AND(ISDATE([PROPOSED RESPONSE DATE]@row), TODAY() > [PROPOSED RESPONSE DATE]@row), 1, 0)
Perfect! Thank you!!
Happy to help! 👍️
I have a formula that I have used for years on a sheet and it was working an hour ago and then all of a sudden it just stopped working, I went out the sheet and back in and . The formula is =IF([Shop Order]@row = 0, (COUNTIF((RN:RN), RN@row ))) but instead of returning the value it says #INVALID COLUMN VALUE Got it working…
Hi all. My team is currently using a sheet to track tasks and hours spent on each task, for each week of the month. There are 4 different types of tasks (Project, Initiative, Ad Hoc, Daily Task), and some of out project managers work on the same project or initiative. I am trying to create a COUNTIF formula to count the…
Hi Community, I'm looking for assistance with creating formulas in Smartsheet to separate a combined DateTime value into two distinct columns: one for the date and one for the time. "Date" Column: Contains both date and time values "Date Only" Column: Should display only the date "Time Only" Column: Should display only the…