As the title says, I have the current time in cell L9 using function NOW() and would like cell G9 to display either YES or NO depending on if cell L9 time falls between two times displayed in cells L19 and M19
I currently have the formula =IF(AND(L9>=L$19,L9<=M$19),"YES","NO") in cell G9 But i am getting a NO response and cant figure out why
CodePudding user response:
NOW returns the current date and time. "Remove" the date portion of NOW by using INT. In L9, use:
NOW()-INT(NOW())
