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

Announcements
Register by January 31 for $300 off your Qlik Connect pass: Register Now!
cancel
Showing results for 
Search instead for 
Did you mean: 
helen_pip
Creator III
Creator III

Set analysis in a graph

Hello

I have the following set analysis which works O.K in a Text box, and the result return 02:03

 

=

Time(RangeFractile(.5, $(=Concat([Total Wait], ',') & ',' & Concat(CONCLUSION_WAIT_MINS, ','))

I want to use this set anlysis as an expression in a graph.  My dimension to plot against this againist is called Main_Week.  However the graph currently shows 02:03 for every week.

Could someone kindly help me write the correct syntax so the graph changes for every week

Thanks

Helen

1 Reply
swuehl
Champion III
Champion III

Helen,

the dollar sign expansion is evaluated once per chart, in global context, so won't take your dimension values into account.

If you could create a single common field from [Total Wait] and [CONCLUSION_WAIT_MINS], you could use fractile() function without a dollar sign expansion, instead of the current solution.