If statement with dates based in order

ramosca

New Member
Joined
Mar 5, 2012
Messages
17
I am trying to figure out how to calculate an if statement using dates.

A2 = promised date
B2 = completion date
C2 = status

If the completion date is before the promise date then the status should equal = "on time"
If the completion date is after the promise date then the status should equal = "late"
if the completion date is blank the status should equal = "late"

Thanks for your help in advance
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Let's assume you actually mean

"If the completion date is before OR THE SAME AS the promise date then the status should equal = "on time" "

=if(or(b2="",b2>a2),"late","on time")
 
Upvote 0

Forum statistics

Threads
1,214,378
Messages
6,119,188
Members
448,873
Latest member
jacksonashleigh99

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