Sign in to join the conversation:
I am trying to flag contracts needing renewals. What am I doing wrong?
=IF(OR([Contract end date]1 <= Today1 + 1 - 90, 1, 0))
I use Smartsheet for property management and need the lease end dates to be flagged too. I simply use the "countif" formula such as =COUNTIF(CHILDREN(), <TODAY()) + " expired" to do the job of giving me a total of all expired. I then link that field to my dashboard for a global view. You could do the same for 90 days such as =COUNTIF(CHILDREN(), <TODAY(90)) + " expiring in 90 days" to do the same for 90 days prior. I also use the conditional formatting feature to turn each red or yellow based on expiring 90 days (and also 30 days) from today. Also, you can set an alert to email you when a date is at a certain time frame from today.
Hi -
It looks like you don't have the OR condition built correctly for the 2nd expression- it would need to be something like:
=IF(OR([Contract End Date]1 <= TODAY() + 1 - 90, [Contract End Date]1 <= TODAY() + 90), 1, 0)
Alternatively, you could use =IF([Contract End Date]1 > TODAY() + 90, 0, 1)
This flags any past due item and anything within 90 days. See screenshot.
I hope this helps you out?
Sean
Thank you so much! The IF/OR logic is working perfectly.
Hello. I need to send a sheet to multiple different people and I want them to only be able to interact with their specific row. Is this possible? eg: 10 rows(person A, comment) I want Row 1 to go to person A and for them to only see their row and only comment in their specific section, Row 2 → person B, etc, etc. Any help…
I have a Resource Table with… Resource ID Name DailyRate ValidFrom R01 Resource X $1,500 3/8/25 R01 Resource X $2,000 9/1/25 R01 Resource X $2,200 9/31/25 I also have a Week by Resource Table with… WeekID ResourceID WCDate ValidRatePerWeek W01 R01 3/2/25 auto-pop $1,500 W02 to W26 R01 All the dates for W02 to W26 auto-pop…
I've got a sheet set up with multiple tasks assigned to different people. When printing the sheet the comments are all listed at the bottom of the sheet rather than under the relevant tasks. Is there a setting that allows the comments to be printed under each task ?