Sign in to join the conversation:
=IF(Status8 = "Complete", "Blue", IF([Due Date]8 < Today8, "Red", IF([Due Date]8 = Today8, "Yellow", IF([Due Date]8 > Today8, "Green"))))
Very new at this, but I can't see the problem...
Try:
=IF(Status8 = "Complete", "Blue", IF([Due Date]8 < Today(), "Red", IF([Due Date]8 = Today(), "Yellow", IF([Due Date]8 > Today(), "Green"))))
edit: I'd also change to @row cell references. It'll make easier to copy.
=IF(Status@row = "Complete", "Blue", IF([Due Date]@row< Today(), "Red", IF([Due Date]@row= Today(), "Yellow", IF([Due Date]@row> Today(), "Green"))))
Hi Smartsheet experts! I'm trying to accomplish something like the above, where I count the number of repeats of one value in a column, but that count resets when the value changes and resets to 1 if the same name appears later. This is to consolidate an order form where users can order different numbers of items- it's…
Hello SmartSheet Community. I have created a report with various categories and totals. I wanted to capture certain categories and their totals however the totals are not calculating correctly. I would have to copy the totals, paste them to an excel blank sheet and AutoSum there. Can someone see what I am doing wrong?…
I need help creating a formula to calculate how many hours my team is allocated for per week. I have three columns in my sheet that we use for task management. Hrs per week - is a number on the hours it takes Assigned to - is a manual text field of the team member who is doing the task Due Date - when it is due (typically…