Guys I'm having a problem. In the current sheet. In F1 i'm using the follow formula for date the current date.
=TEXT(NOW(), "dd-mm-yyyy")
Sheet will auto refresh every 1 min.
Dates in each cell (A4:A53)13-11-2017,14-11-2017 date going down. Using and if statement to see if current date is true then insert (B1) if false then write nothing. Current formula i am using.
=IF(F1=A4:A53,"B1,"")
It is always saying dates are not true, always false. Even if they are true. Any advise please

F1=A4:A53will never beTRUE- you are comparing a single value to a range... - Koby Douek