Hey All,
The following formula is for displaying a time range. If a box is marked in any way it should choose the first and last time marked, in thirty minute increments from 4:30AM-12PM. However, I just added the 4:30AM spot into the sheet(new column, but cannot figure out how to have this additional information calculated into the formula posted below. Any help would be greatly appreciated as the values (AX/AY) are for columns that do not exist in the sheet which is what is confusing me the most.
Thank you!
The following formula is for displaying a time range. If a box is marked in any way it should choose the first and last time marked, in thirty minute increments from 4:30AM-12PM. However, I just added the 4:30AM spot into the sheet(new column, but cannot figure out how to have this additional information calculated into the formula posted below. Any help would be greatly appreciated as the values (AX/AY) are for columns that do not exist in the sheet which is what is confusing me the most.
Code:
=IF(OR(ISNA(AX5),ISNA(AY5)),"",""&TEXT(AX5,"h:mm AM/PM")&"-"&TEXT(AY5,"h:mm AM/PM"))
Thank you!