Forum Discussion
Anonymous
6 years agoNot applicable
Time Comparisons with NOW()
Hello, In a measure, I am trying to compare the time from NOW()to a static value using TIME(), but it is only working on the < condition. The function NOW() is returning 7/28/2020 11:18AM What...
Anonymous
6 years agoNot applicable
amitchandak This works with the first condition, but it is still returning Blank() when I try:
NOW() > Today() + Time(3,30,0)
Tahreem24
6 years agoSuper User
Anonymous ,
Try like a below:
Column1 = IF(NOW()>TODAY()+Time(3,30,0),"Yes","No")
Column2 = IF(NOW()<TODAY()+Time(3,30,0),"Yes","No")