A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
NOW() returns both the date and time, even if the number format displays only the time. TIMEVALUE("18:00") returns only a time.
Use this instead:
=IF(HOUR(A1)>=18,"True","False")
or even
=HOUR(A1)>=18