From: nigeo on
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
--
nigeo
From: Mike H on
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.


"nigeo" wrote:

> 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
> --
> nigeo