Forum Discussion
SPearson1973
Jun 04, 2019Copper Contributor
Excel If or formula?
I have a formula which looks at a date in column B and returns how many days from that date - thi s formula is =Today()-B3, I have another column with Text which states Major Overdue or other text. ...
Twifoo
Jun 04, 2019Silver Contributor
You may also CHOOSE this formula:
=CHOOSE((C3=“Major Overdue”)+1,
TODAY()-B3,
30)
=CHOOSE((C3=“Major Overdue”)+1,
TODAY()-B3,
30)