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

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
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,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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