Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
mohanraj94
Contributor III
Contributor III

Providing a List to select the columns to be made available in pivot table

Hi All,

I want to give an user a list of column names. so they can select the columns they want to see in the pivot table.

I have already created a list and I am using (show column if option and adding the formula if(Match(list,'column_name'),1,0)  to it). But it only works if we select only one column from the list. if we select two or more column it is not working

Does anyone know how to achieve it

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

3 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

mohanraj94
Contributor III
Contributor III
Author

Hi,

Thanks for your help. It is working. However even If none of the values are selected in the list. Views are showing all the column names.

Is there are any way to fix it? The View has to show the column names only if I select the column names in the list

mohanraj94
Contributor III
Contributor III
Author

Hi All,

I found a solution, we just need to add the below formula in adds on

=If (getselectedcount(list)>0,1,0)