Welcome to the Smartsheet Forum Archives


The posts in this forum are no longer monitored for accuracy and their content may no longer be current. If there's a discussion here that interests you and you'd like to find (or create) a more current version, please Visit the Current Forums.

IF Formula Help

Options
jhorne
jhorne
edited 12/09/19 in Archived 2017 Posts

I'm terrible with formulas! What would my formula look like to do the following:

I have a listing of open action items, each with an attached target due date. I need the RYG overall project status balls to update automatically. Green if no action items are past due, according to the target date column. Yellow if one action item in the target date column is past due. Red if more than two action items in the target date column are past due. 

Please help!!

Tags:

Comments

  • Andrew DeCounter
    Options

    The following example will get you what you need. We start first defining the "Red" criteria, if that criteria isn't met, we check the "Yellow" criteria, and when both defined criteria aren't met we then set "Green".

    =IF(COUNTIF(Date:Date, >[Due Date]1) > 1, "Red", IF(COUNTIF(Date:Date, >[Due Date]1) = 1, "Yellow", "Green"))

     

    Hope this helps!

     

     

  • jhorne
    Options

    Thanks Andrew . . . formulas get me every time. 

    I still can't get this to work. What do I want to put in for date and due date areas??

This discussion has been closed.