Prev: How do I insert a photo into a specific cell?
Next: how to show open files stacked and not side by side
From: nigeo on 13 May 2010 16:44 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 13 May 2010 16:50
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 |