RYG ball to change with expiration date

TNassar
TNassar
edited 12/09/19 in Smartsheet Basics

Hello

 

I would like the ball to be red if the date is in the past, yellow if the date is within the next 30 days and green if it is set to expire in more than 30 days. Help? TIA

Comments

  • Mike Wilday
    Mike Wilday ✭✭✭✭✭✭

    =IFERROR(IF(Date@row < Today (), "Red", IF(Date@row > Today(30), "Green", "Yellow"))"")

    This formula will provide you with a red if the date is in the past, Green if the date is greater than 30 days from today, and yellow if anything falls inbetween. I wrapped it in an IFERROR formula in case your row is missing date and then the field should appear blank with no symbol. 

    Hope that helps! 

  • Mike Wilday
    Mike Wilday ✭✭✭✭✭✭

    Just replace "Date@row" with your ColumnName@row or if your column contains a space or ends in a number [Your Column Name]@row.