IF Formula

Amy33

New Member
Joined
Jul 24, 2019
Messages
6
Hi,

I am trying to get a formula to return one of three values for two cell,

I have two cells (i.e. F11 and G11) if F11 has something in, I need cell I11 to return "In Progress" if G11 contains something then I11 to return "complete"... at this point, both F11 and G11 would have something in. If they were F11 was blank then I11 to return "Not Started"

In I11, I had =IF(F11="","Not Started",In Progress")&IF(G11="","","Complete") but it return 'In ProgressComplete' when there is a value in F11 and G11 rather than Complete

Any help would be awesome! sorry to be a pain!

Thanks
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hey,

try:

=IF(G11<>"","Complete",IF(F11<>"","In Progress","Not Started"))

NB: If F11 & G11 are both populated this formula ignores F11 and gives the initial value "Complete"
 
Last edited:
Upvote 0
No problem!

Your initial formula you posted concatenates 2 IF statements, hence the "In ProgressComplete" as the & operator is used to join things - instead of concatenation you just needed to nest an extra IF function to open up the possibility to 3 different outcomes :)
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,246
Members
449,075
Latest member
staticfluids

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