Expiration Date and Symbol Formula

Options

I am looking for some help on a formula. I would like for if ANY of the dates are expired, put 'No' (red circle) in the row; if ALL of the dates are not expired, put 'Yes' (green circle) in the row.


Below is a snip where I have entered the symbols manually to show what I am after. Is this possible?


Answers

  • Nic Larsen
    Nic Larsen ✭✭✭✭✭✭
    Options

    Since we can't see your column names, use something like this to set your formula up:

    =IF(AND([Date 1]@row > TODAY(), [Date 2]@row > TODAY(), [Date 3]@row > TODAY()), "Yes", "No")