How can I join the following two If statements together?

Daniel_21

New Member
Joined
Apr 2, 2018
Messages
6
Hi,

I need to merge the following two statements and I'm not sure how to merge them for them to work?

=IF(E288="","Incomplete",IF(OR(E288<D288,E288=D288),"Completed",IF(E288>D288,"Cmp Late")))

=IF(C288>E288,"Early","Cmp or late")

any if statement genius?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
I'm not sure where all your dates are, so I'll do this rather generically....so here goes...adjust as needed.

A1 is completed date, A2 is "on time" date

=IF(A1="","Incomplete",IF(A1<A2,"Complete, early",IF(A1=A2, "Complete, on time",IF(A1>A2, "Complete, but late"))))

That was made on the fly without excel available, but I think I got all the ")" in there :)

EDITED ABOVE a few minutes after original post....
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,643
Members
449,093
Latest member
Ahmad123098

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