Forum Discussion
hdenizozturk
3 years agoNew Member
Using filtered data in another view
Hi, I have a dataset that shows the weight figure (lbs) for all the transactions from Warehouses to Customers. I can get the top 20 customers by a pre-filtered Warehouse. Now I want to know, ...
peter_gorgol
3 years agoFrequent Visitor
I might need to have a look at your sample date but something like code below should do the job:
MEASURE = CALCULATE (
SUM ( 'Table'[Weight] ),
REMOVEFILTERS ( 'Warehouses'[Warehouse] )
) hdenizozturk
3 years agoNew Member
Wouldn't this show the top 20 customers among all the shipment data?
Maybe I didn't explain it correctly. I am still interested in the top 20 customers of Warehouse A but I want to know the total weight shipped to those 20 customers from all Warehouses not just from WHSE A.
Unfortunately, I can't share the data due to confidentiality.