Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

date functions inside set analysis

Having trouble with dates and set analysis - the below does not resolve:

sum({< day={ date(my_date,'WWWW')}> } value)

Anyone know how to do date formatting inside set analysis?

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

All function inside set analysis must be used with $ expansion:

sum({< day={'$(=date(my_date,'WWWW'))'}> } value)


let me know


Pay attaention to date formats

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

All function inside set analysis must be used with $ expansion:

sum({< day={'$(=date(my_date,'WWWW'))'}> } value)


let me know


Pay attaention to date formats

Not applicable
Author

Try:

sum({<day = {'$(=date(my_date,"WWWW"))'}>}value)

Not applicable
Author

thanks, this is what I was looking for