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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
jleberre
Contributor II
Contributor II

Associated values of a selection in a set analysis

Hello

I'm trying to use the associated values of a selection in a set analysis.

For example:

A selection would be done in the "customer" field using a filter pane.

The selection in "customer" field would be removed, but the associated value in another field ("market") would be used to calculate the measure.

I was looking for a function that would return a string with the associated value of a selection. A kind of GetAssociatedValuesOfSelection() function:

Count({<customer=,market={$(=GetAssociatedValuesOfSelection(market))}>}Calls)

But it seems to me that a such function does not exist.

Does anyone have an idea?

Thanks!

1 Solution

Accepted Solutions
sunny_talwar

Try this

Count({<customer=,market=p(market)>}Calls)

View solution in original post

2 Replies
sunny_talwar

Try this

Count({<customer=,market=p(market)>}Calls)

jleberre
Contributor II
Contributor II
Author

it seems to be good, thank you!