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.
Howdy, I am working on developing a several dashboards for our team, and for whatever reason the widgets I place are multiplying. I have copied/pasted some, but other I have just added I am ending up with dashboards that look like this: When originally I only had the top four items. It has happened on several different…
I am a construction project manager and built sheets that include actual costs for individual tasks, departments and overall project. I update the costs cells as invoices come in by manually calculating then entering in new amount. Ex: Plumbing: week 1 $300, week 2 $250, week 3 $150 = $700. I enter $700 in cell. I'm…
I have multiple items that each have their own statuses and that roll up to "workstreams" or swimlanes. On the dashboard, I would like to show the progress of the items by swimlane without breaking it out into separate widgets for each. This would ideally be a stacked bar where each bar represented the Items and was broken…