=IF(A2<="12:00","Before Noon",IF(AND(A2>"12:00",A2<="15:00"),"After Noon",IF(AND(A2>"15:00",A2<"19:00"),"Evening","Night")))
I have a column of timestamps..i need to create buckets like before noon, post noon etc.
I am using the above formula but its not working. can anyone help me with it?