Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
andrew001
Contributor III
Contributor III

filter pivot table

hi

I'd like to create a pivot table and show only the alphanumeric ID  (indipendent by tha selection)

Thanks

tab1:
load *

inline
[ID
012
012
012
014
014
016
018
018

AAA,

BBB]

;


3 Replies
Gysbert_Wassenaar

Try a calculated dimension if(not isnum(ID), ID) and check Suppress When Value Is Null


talk is cheap, supply exceeds demand
andrew001
Contributor III
Contributor III
Author

thanks but I'd like to use set analisys, so the result will be indipendent by selection

I've tried but, at now, I haven't found the solution

simondachstr
Luminary Alumni
Luminary Alumni

Try creating a dynamic dimension like this:

=aggr(Only(ID), ID))

Then you should be able to use set analysis with the function Only displaying your desired values.

In your case I think the following would to the job:

=aggr(Only({$<ID={"*"}-{">0"}>} ID), ID)