Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Start date Active column is having value as per below
01/03/2019 12:00:00 AM
To put condition like START_DATE_ACTIVE<today-1
I am Using below set analysis but it is not working for me
START_DATE_ACTIVE = {"< $(=date(Today()-1,dd/MM/yyyy hh:mm:ss TT))"}
please let me know if i am missing anything , or any other way to achieve this.
thanks for your reply,
if i am using START_DATE_ACTIVE = {"< $(=date(Today()-1,dd/MM/yyyy hh:mm:ss TT))"} than it is returning all rows.
and if i am using START_DATE_ACTIVE = {"< $(=date(Today()-1,'dd/MM/yyyy hh:mm:ss TT'))"} it is not returning any rows.
dont know why... 😞
not sure it looks ok. hard to diagnose without an app
try below (basically avoid all the format issues
START_DATE_ACTIVE = {"<$(=floor(Now())-1))"}
hi,
i think your date field is numerical but only the display of it is as timestamp and you could try with num(today()-1) in your condition.
hope it helps,
Andrew