Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
suvechha_b
Creator III
Creator III

dimension restriction

How to restrict the pivot table value.

I want to show product whose item_no =2.

I want to restrict through dimension.

5 Replies
mishraamit2485
Creator
Creator

You can use calculated dimension in dimension like, if(item_no='2',Yourresult,)

Kushal_Chawda

Create calculated dimension,

If( item_no=2, product). And check suppress NULL values option for this.

or

In your expression you can do something like below

sum({<item_no={2}>}Value)

Anonymous
Not applicable

The only way to do this would be to use set analysis - {Item_no = {2} - or a calculated dimension like Amit said.  Be sure to hide null values for each dimension when you use calculated dimensions.

jonathandienst
Partner - Champion III
Partner - Champion III

Something like:

     If(item_no = 2, product)

But for more accurate help, I suggest that you provide more information, and preferably your qvw application or a representative sample.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
maximiliano_vel
Partner - Creator III
Partner - Creator III

Is this what you need?