Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
mellerbeck
Creator II
Creator II

syntax for date format within set analysis

I've noticed with set analysis that if using a date it of course needs to match exactly if for example you are using an input box to set a variable if you type 08/05/2011 versus 8/5/2011 one will work and the other won't.

So what is the correct syntax for a date format within set analysis, or is there a better (different?) way?

Sum({$<Tran_date = {"$(vNewDate)"}>}

It tried

Sum({$<Tran_date = {"date($(vNewDate),'MM/DD/YYYY')"}>}

but that doesn't seem to work.

1 Solution

Accepted Solutions
mellerbeck
Creator II
Creator II
Author

Gah, got it of course after posting although a review wouldn't hurt my feelings

Sum(

{$<

Tran_date = {"$(=date(vNewDate,'MM/DD/YYYY'))"}>}

View solution in original post

3 Replies
mellerbeck
Creator II
Creator II
Author

Gah, got it of course after posting although a review wouldn't hurt my feelings

Sum(

{$<

Tran_date = {"$(=date(vNewDate,'MM/DD/YYYY'))"}>}

Not applicable

I tend to convert my dates into numbers, and do comparisons and set analysis that way. Set analyisis with dates has bit me more than once.

johnpaul
Partner - Creator
Partner - Creator

I use variables for both if possible:

Sum ({$<Tran_Date = {">=$(vDateStartLY)<=$(vDateEndLY)"}>}Invoice)

Part of the reason for this is that we support systems outside of the US as well as the US, so the date formats need to be considered.