Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Hello
Try SUM({$<[Warehouse Locations] = >} Sales)
This expression will ignore the selections on the field "Warehouse Locations"
Regards
You need to use TOTAL qualifier to avoid the Warehouse filters
SUM(TOTAL <Item_Category , Item_Name> SALES)
Thanks. That doesn't work. The Locations still respond to the filter.
May be this:
{<[Warehouse Location] = >}
Hello
Try SUM({$<[Warehouse Locations] = >} Sales)
This expression will ignore the selections on the field "Warehouse Locations"
Regards
try
sum({$ <[Warehouse Locations]= >} sales)
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.
That seems to work. I swear I tried it and it did not. Thanks everyone.
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.
Hi
Try this: Sum({$<WarehouseLocation=>} Sales)