Excel Formula Comparing Planned Date Vs Baseline Date and If Actual Date then Complete

Lcrosss

New Member
Joined
Feb 6, 2013
Messages
9
Office Version
  1. 365
Platform
  1. Windows
I'm looking for a formula to compare the scheduled date to the baseline date. This equals "Late" if the anticipated date is later than the baseline date. And if there is an actual date, this means everything is finished.
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
=IF ( cell with actual date <> "" , "finished", IF ( anticipated date > baseline date, "Late" , "what here another calc, if actual date is blank or Anticipated date is < baseline - Early ??"))

Note: Images are difficult to see , and also requires that I input all the data myself, which is very time consuming.

A SMALL sample spreadsheet, around 10-20 rows, would help a lot here, with all sensitive data removed, and expected results mocked up and manually entered, with a few notes of explanation.

MrExcel has a tool called “XL2BB” that lets you post samples of your data and will allow us to copy/paste your sample data into our Excel spreadsheets, saving a lot of time.

You can also test to see if it works ok, in the "Test Here" forum.

OR if you cannot get XL2BB to work, or have restrictions on your PC , then put the sample spreadsheet onto a share
I only tend to goto OneDrive, Dropbox or google docs , as I'm never certain of other random share sites and possible virus.
Please make sure you have a representative data sample and also that the data has been desensitised, remember this site is open to anyone with internet access to see - so any sensitive / personal data should be removed
 
Upvote 0
A B C D
BL Date Plan Date Actual Date Result
6/5/2022 7/1/2022 Late
6/5/2022 7/1/2022 6/5/2022 Done
6/5/2022 6/5/2022 Ok
 
Upvote 0
not sure i follow completely - really trying to help
but does this work ?

=IF(C2<>"", "done",IF(B2<A2,"late","OK"))

Book4
ABCDEFGHIJ
1BL DATEPLAN DATEACTUAL DATERESULTFormula
25/6/221/7/22LatelateThis equals "Late" if the anticipated date is later than the baseline date. And if there is an actual date, this means everything is finished.
35/6/221/7/225/6/22Donedone
45/6/225/6/22OkOK
Sheet1
Cell Formulas
RangeFormula
E2:E4E2=IF(C2<>"", "done",IF(B2<A2,"late","OK"))
 
Upvote 0
not sure i follow completely - really trying to help
but does this work ?

=IF(C2<>"", "done",IF(B2<A2,"late","OK"))

Book4
ABCDEFGHIJ
1BL DATEPLAN DATEACTUAL DATERESULTFormula
25/6/221/7/22LatelateThis equals "Late" if the anticipated date is later than the baseline date. And if there is an actual date, this means everything is finished.
35/6/221/7/225/6/22Donedone
45/6/225/6/22OkOK
Sheet1
Cell Formulas
RangeFormula
E2:E4E2=IF(C2<>"", "done",IF(B2<A2,"late","OK"))
This worked! Thank you very much
 
Upvote 0

Forum statistics

Threads
1,225,812
Messages
6,187,155
Members
453,409
Latest member
BlueIndian

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