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

Is it Possible to Filter a Dimension by Set Analysis

Hello,

I have a Table like below. All are dimension. I want to see only Unknown PCP Blended Group Practice Name. That mean I only want to see the member number that has unknown Practice Name. Please suggest.

Untitled.png

3 Solutions

Accepted Solutions
Vegar
MVP
MVP

image.png

For the chart above I used this script/data

Load * inline [
Practice name, Blended group, Member number
My doctor, M123, A123
Your doctor, Y123, A234
UNKNOWN, U123, A345
UNKNOWN, o, A456
];

And this calculated dimension

=IF(match([Practice name], 'UNKNOWN')= 0, [Practice name])

 

View solution in original post

niha
Creator II
Creator II
Author

Hello,
We are getting there! I need to show unknown only. I mean the member Having no PCP or unknown. So in Practice Name there should be unknown only.
Thanks

View solution in original post

ajaykakkar93
Specialist III
Specialist III

=IF(match([Practice name], 'UNKNOWN')<> 0, [Practice name])

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

View solution in original post

3 Replies
Vegar
MVP
MVP

image.png

For the chart above I used this script/data

Load * inline [
Practice name, Blended group, Member number
My doctor, M123, A123
Your doctor, Y123, A234
UNKNOWN, U123, A345
UNKNOWN, o, A456
];

And this calculated dimension

=IF(match([Practice name], 'UNKNOWN')= 0, [Practice name])

 

niha
Creator II
Creator II
Author

Hello,
We are getting there! I need to show unknown only. I mean the member Having no PCP or unknown. So in Practice Name there should be unknown only.
Thanks
ajaykakkar93
Specialist III
Specialist III

=IF(match([Practice name], 'UNKNOWN')<> 0, [Practice name])

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting