Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set Identifier - Quick Question?

I'm creating a pivot table that will have Item Categories and Items along the side, and Warehouse Locations across the top. I want to show a sum of sales in the table. The Item Categories and Items along the side should respond to filter selections, but the Warehouse Locations across the top should stay static -- i.e. always show all locations, even if the user has one or more selected.

I've tried a number of things with the set identifier, but don't see a way to call out a specific field. I'd rather not use a bookmark. I feel like I'm missing something. Can someone help? Thanks.

1 Solution

Accepted Solutions
julian_rodriguez
Partner - Specialist
Partner - Specialist

Hello

Try SUM({$<[Warehouse Locations] = >} Sales)

This expression will ignore the selections on the field "Warehouse Locations"

Regards

View solution in original post

10 Replies
Not applicable
Author

You need to use TOTAL qualifier to avoid the Warehouse filters

SUM(TOTAL <Item_Category , Item_Name> SALES)

Not applicable
Author

Thanks. That doesn't work. The Locations still respond to the filter.

sunny_talwar

May be this:


{<[Warehouse Location] = >}

julian_rodriguez
Partner - Specialist
Partner - Specialist

Hello

Try SUM({$<[Warehouse Locations] = >} Sales)

This expression will ignore the selections on the field "Warehouse Locations"

Regards

maxgro
MVP
MVP

try

sum({$ <[Warehouse Locations]= >}  sales)

jagan
Luminary Alumni
Luminary Alumni

Hi Brian,


Try like this in Set Analysis


Sum({<WarehouseLocation=>}  Sales)


WarehouseLocation= will ignore the selections in WarehouseLocation field.


Note: WarehouseLocation and Sales with your actual field name.


Regards,

Jagan.


Not applicable
Author

That seems to work. I swear I tried it and it did not. Thanks everyone.

jagan
Luminary Alumni
Luminary Alumni

Hi Brian,

If you got the answer please close this thread by giving Correct and Helpful answers so that it helps others in finding the answers easily.

Regards,

Jagan.

Anonymous
Not applicable
Author

Hi

Try this: Sum({$<WarehouseLocation=>} Sales)