Help with creating a late truckload departure sheet

deckshermorgan

New Member
Joined
Apr 16, 2020
Messages
1
Office Version
  1. 2016
Platform
  1. Windows
Hello all,

This is the first time I've needed to create any kind of formula beyond the basics of SUM, AVG, etc. I need to create a sheet to track late truckload departures.

1587073281782.png


The above are the column markers and titles for each column. I'm trying to create a sheet whereupon pasting the raw data from the excel sheet will allow me to either highlight or pull the loads that depart late according to our metrics. In the photo above, if 'Status' in column B = 'complete' or 'not in yard', and ADT (actual departure time) in column N is greater than 30 minutes past SDT (scheduled departure time) in column L, then the load would be considered late. The data in column L and column N are formatted as follows: 4/16/2020 12:00, so it includes both the date and the time. I'm not sure if that will complicate things.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
it includes both the date and the time. I'm not sure if that will complicate things.
It actually makes it a lot easier.

Try this for row 2, then fill down as needed

=IF(AND(OR(B2="complete",B2="not in yard"),(N2-"00:30")>L2),"Late","Not Late")
 
Upvote 0
Yeah, I was just writing pretty much the same formula. If you want it to highlight rows, you should put that in conditional formatting :)
 
Upvote 0

Forum statistics

Threads
1,214,947
Messages
6,122,413
Members
449,082
Latest member
tish101

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