Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
parthesh
Creator
Creator

Urgent!!!! Set analysis for Date time column less than today().

 

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.

Labels (3)
5 Replies
dplr-rn
Partner - Master III
Partner - Master III

you missed single quotes inside the date function 'dd/MM/yyyy hh:mm:ss TT'
parthesh
Creator
Creator
Author

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... 😞

 

dplr-rn
Partner - Master III
Partner - Master III

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))"}

dplr-rn
Partner - Master III
Partner - Master III

check data type of your START_DATE_ACTIVE column too to make sure it is timestamp not string
andrei_delta
Partner - Creator III
Partner - Creator III

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