Estimated Time of Departure and actual time of departure

Copper Contributor

Hi Excel community,

seeking your assistance to provide formula for column Q,

Column Q must mark as 1 if on-time, since actual time of departure is ahead (column K)

vs estimated time of departure (column I).

24 hrs already converted into minutes.

Capture.JPG

 

1 Reply

@Julius575 Try this instead:

=IF(K4="","",--(I4+1>=K4))

This will return 1 in the given example.