I have a table of values with different date times. I'm attempting to create a new columns that sorts values that fall within a specific time range of 6:00am to 6:00pm. The physical calendar day does not matter, so I'm attempting to use wildcard but I keep coming up with a False result for values that should be true.
Here's what I have.
=IF(AND(A2>="*"&"06:00 AM",A2<"*"&"18:00 PM"),B2,"0")