Hi there, very new to Smartsheet and I'm hoping that someone can help. I'm using the symbols red, green, yellow and blue as status and assuming the following instances:
If less than or equal to 5 days to due date from today 'Red"
If greater than 5 days but less than 15 days to due date from today "Yellow"
If greater than or equal to 15 days to due date from today "Green"
If due date is blank "Gray"
When I use the below logic, when the due date is blank, the symbol turns red instead of gray.
=IF([Due Date]49 <= TODAY(5), "Red", IF(AND([Due Date]49 > TODAY(5), [Due Date]49 < TODAY(15)), "Yellow", IF([Due Date]49 >= TODAY(15), "Green", IF([Due Date]49 = 0, "Gray"))))
I'd appreciate any feedback. I have a feeling I have an error on the "Red" formula.
Thanks!