arrived in appt time

  • Thread starter Thread starter nigeo
  • Start date Start date
N

nigeo

I have a column A "appt start time" column B "appt finish time" column C
"Arrival time" I need Col D to = Y or N if the arrival time was in the time
slot.
Columns a-c formatted dd/mm/yyyy hh:mm
please can you help
 
Hi,

Try this

=IF(AND(C2>=A2,C2<=B2),"Y","N")
--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.
 
Back
Top