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.
I have 2 sheets that I need to link: Sheet 1 - collects user registration information through a form. Sheet 2 - I want to link some columns to copy partial data collected in sheet 1 and have it show in sheet 2. I don't want to copy the entire row, just select columns and I don't have Smartsheet Bridge. Each sheet has a…
Currently, I have a report connected to a single sheet. This sheet contains various formulas, including cross-sheet references. When data is added to the report, the formulas will not update/work unless the sheet is refreshed. Is there any way to have the formulas values "pop-up", or otherwise load? It is somewhat…
Hi I ran into an issue today where my smartsheet timeline was updated without any user's input and several dates were changed cascading to the entire timeline. I tracked it down to several tasks and started correcting them, realising that there is some issue when dependencies are using regular "day" duration and some are…