Skip to main content

I have a table where I need to mark when flights take off between 22:00 - 07:00. I would like an If statement where it marks the record with an X when this is true. I have date fields for the departure time but I just cant quite find how to have a general standing marker based on times rather that a specific time AND date.

Hey kevin! Its kevin, I figured it out for you. Converted the times to decimals.


IF(OR({Departure Time (Airport Time)} < 7.0,


{Departure Time (Airport Time)} > 22.0), ‘x’, BLANK())


Hey kevin! Its kevin, I figured it out for you. Converted the times to decimals.


IF(OR({Departure Time (Airport Time)} < 7.0,


{Departure Time (Airport Time)} > 22.0), ‘x’, BLANK())


You could also use the HOUR() function to pull the hour out of a time field.


Reply