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

Set Analysis in Date Dimension

Is it possible to put a set modifier in a date dimension?

i.e. date({$<Step={4}>} Date, 'MM-DD-YY')

An order can go through many steps, but i want all of the order's information to report on the date that step 4 occurs.

My problem occurs when I'm doing a stacked graph comparing the data of each step, so data that occurs on step 5 reports on the date of step 5, not step 4.

Please help!

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Set works only with aggregation functions.  Your can use
only({$<Step={4}>} Date)
or, if you have to use formatting
date(only({$<Step={4}>} Date), 'MM-DD-YY')

View solution in original post

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

   Set Analysis is not possible in date function.

   If you can give us full detail of your problem with description and the sample file, that would make it easier for us to understand and solve your problem.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anonymous
Not applicable
Author

Set works only with aggregation functions.  Your can use
only({$<Step={4}>} Date)
or, if you have to use formatting
date(only({$<Step={4}>} Date), 'MM-DD-YY')