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: 
Not applicable

set analysis

Where can i put a set analyses in this formula so that selections are ignored.  I tried everything but it don't seems to work  Formula:stdev(aggr(sum(XXX),y,y))  Wherever i put a set analysis selection the result still changes when making a selection.  Peter

3 Replies
brenner_martina
Partner - Specialist II
Partner - Specialist II

Hi, Peter,

I think the following is right:

stdev({<Field1=,Field2=,... >} aggr(sum(({<Field1=,Field2=,... >} XXX),y,y))

Field1= means, a selection in this field will not effect the sum and stdev

Greetings from Munich

Martina

EVACO GmbH

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try using {1} in you expression.

stdev(aggr({1}sum({1}XXX),y,y))

{1} - disregards the selections

Regards,

Jagan.

Not applicable
Author

You should try :

stdev( {1} aggr( {1} sum(XXX),y,y))

Then your expression will be independant from all selections in your application.