Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Dhruva1
Contributor II
Contributor II

Filter pane and Pivot Table functionality with different measures

I have requirement in Qlikview  like this below.

i have one filter 'Status'. below this i have one vendor table with 5 measures . please look at the screenshot.

if i select the "status "filter as "approved" then in the pivot i want to see like Measure1,Measure2,Measure3.

if i select the "status" filter as "approved, Pending" then in the pivot i want to see like Measure1,Measure2,Measure3,Measure4.


WhatsApp Image 2023-09-04 at 10.55.31 AM.jpegif i select "status" as "all" then i want to see the entire pivot with all columns. if i didn't select anything in the status filter still i want to see pivot with all the measures.

 

 

 

 

3 Solutions

Accepted Solutions
Or
MVP
MVP

You can use conditions for each measure regarding when to display it.

Or_0-1693816011988.png

 

Typically this would be something like:

WildMatch(concat(FieldName),'*Value1*','*Value2*')

 

View solution in original post

Or
MVP
MVP

Sorry, missed the QV part. Same expression, just different place to put it.

Or_0-1693816924491.png

 

View solution in original post

Or
MVP
MVP

Use concat as I suggested, not getfieldselections.

View solution in original post

6 Replies
Or
MVP
MVP

You can use conditions for each measure regarding when to display it.

Or_0-1693816011988.png

 

Typically this would be something like:

WildMatch(concat(FieldName),'*Value1*','*Value2*')

 

Dhruva1
Contributor II
Contributor II
Author

I will try the above expression .

This one want to implement on qlikview.

Or
MVP
MVP

Sorry, missed the QV part. Same expression, just different place to put it.

Or_0-1693816924491.png

 

Dhruva1
Contributor II
Contributor II
Author

Substringcount(concat(getfieldselections(fieldname)))

This is working for me for the selections but default without any selections in the filter I want to see all the measures in the pivot. Any suggestions?

 

Or
MVP
MVP

Use concat as I suggested, not getfieldselections.

Dhruva1
Contributor II
Contributor II
Author

Using concat as you suggested is working . And satisfies my requirement.

Thanks alot