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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Complicate Set Analysis

Hay all

I need to know if there is an option

to write set analissys who calaculate a result of unselected one field

but the same selected values of other selected  field's.

Example is in the Attache file



Thank

8 Replies
Not applicable
Author

Yes, that is possible.

The correct Set Analysis should be SUM({$<[Sales Person]=>} INCOM)

The $-sign means keep the selections made by user and by defining [Sales Person]= in the Set Analysis you say that this selection should be ignored.

Hope this helps.

Not applicable
Author

Hay Marc,

Thank u for the suggest.

But the $ sign show me all the sales persons,

I need the unselected [sales person] for the [sales person]

but the selected value to the Year

Not applicable
Author

Hi Lavi,

the you should use this:

SUM({$<[Sales Person]=E({$})>} Sales)

This will select only the sales persons that are in de exluded list based on the selections you made.

So the first $ sign means you use all selections. Then in Set Analysis you say that you only want the Sales Persons that are Exclude (E()) and within that you say with Set Analysis for the selections you made {$}.

Marc

Not applicable
Author

Thank you very Much'

It's wors.

Not applicable
Author

I  mean work's,

Not applicable
Author

Another Quastion,

If i have a Country Field,

which syntax should i have to write if i want

to compare to the same sales person's who lived in the same country.

Thak you very much for the help.

Not applicable
Author

Hi Lavi,

Try the following:

SUM({$<[Sales Person]=, [Country]=P({$})>} Sales)

Not applicable
Author

Tank's