Using Multiple IF Functions in same expression

thisishailstorm

New Member
Joined
Jan 7, 2019
Messages
5
Hello, I am trying to change the values in my Status column to either Overdue, On Track, or Blank.

These will reference my Due Date column.
I have figured out how to have my cell = Overdue or On Track, but am having difficulty adding an additional layer to the formula.
Currently, I have Overdue if due date is < than today, On Track otherwise, however I would like the cell to be Blank if Due Date cell is empty.

This is what I have so far:
=IF(G12<today(),"Overdue","On Track")

How do I add the additional condition in my formula?

Thanks!
TwFShKj

TwFShKj
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Hi,

Just add another IF test for G12 being Blank:

=IF(G12="","",IF(G12< TODAY(),"Overdue","On Track"))
 
Last edited:
Upvote 0
You're welcome, welcome to the forum.
 
Upvote 0
Hey, I would like to add an additional item to this formula.
I want the cell to say complete if the date cell is changed to Complete. what i've done below doesn't work. Any feedback? Thank you!!
=IF(G15="","",IF(G15< TODAY(),"Overdue","On Track",IF(G15="Complete","Complete"))
 
Upvote 0
EDIT ^^^^
I'd prefer to have the cell say Complete when a checkbox is ticked in I15.
So the formula will state =IF(G12="","",IF(G12< TODAY(),"Overdue","On Track")) as well as if I15 checkbox=true, then "Complete".
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top