Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
ajithsachin
Partner - Contributor II
Partner - Contributor II

Dimension need to neglet

Hi All,

     My table contains data like this.

         

     and need result like this

    

       actually i need to neglect the dimension to bring the ware house stock.

        

Regards,

Ajith

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

Use this expression for the Warehouse stock column:

Agg(NODISTINCT Sum({$ <Branch={'WareHouse'}>} Stock), Item)

and in the dimension write:

If(Branch <> 'WareHouse', Branch, Null())

and check the "Suppress Null Value" box

let me know

View solution in original post

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Use this expression for the Warehouse stock column:

Agg(NODISTINCT Sum({$ <Branch={'WareHouse'}>} Stock), Item)

and in the dimension write:

If(Branch <> 'WareHouse', Branch, Null())

and check the "Suppress Null Value" box

let me know

ajithsachin
Partner - Contributor II
Partner - Contributor II
Author

Thank u very much..