abbott1
abbott1

Reputation:

Excel Functions

I use this formula to track a recall list; It will tell me if a tool is due,(within a number of days),overdue,or OK. Works fine but I would like to add a "Not Required" if the due date cell,(K3), is left blank.

=IF(2*(K3(K3>=$L$2)=0,“OK”, IF(2(K3=$L$2)=1,“DUE”,“OVERDUE”))

Upvotes: 1

Views: 288

Answers (2)

VoteyDisciple
VoteyDisciple

Reputation: 37803

I'd suggest simply:

=IF(K3="","Not Required", IF(2*(K3(K3>=$L$2)=0,“OK”, IF(2(K3=$L$2)=1,“DUE”,“OVERDUE”)))

Upvotes: 4

Zed
Zed

Reputation: 57668

You can wrap the whole line in another if statement:

=IF(K3="", "Not Required", <<Your if here>>)

Upvotes: 1

Related Questions