Forum Discussion
Sales Filtering by a Measure
Hi Anonymous ,
can you share a sample Power BI file via DropBox, One Drive, Drive or another similar tool?
That will make it easier to help you.
Regards,
LC
- Anonymous6 years agoNot applicable
Hi lc_finance
Thanks for answering. I attached the PBI
In my example, I have the total quantity sold equal to 1200 pieces for 1 product. But I need the quantity sold by BU.
I need to see 500 pieces for Europe and 700 pieces for America. We have to take into account that my data are built exactly as the PBI I attached. therefore, I can't add a product type in my sales table. (Which is in reality a carton bar code).I hope this time, it will be more clear.
Thanks in advance,
Here the document : Link to PBI
Erwan
- lc_finance6 years agoSolution Sage
Hi Anonymous ,
it looks like the link to the Power BI file is not a public link so I cannot access it.
You could check if it's possible to make it public?Regards
LC
- Anonymous6 years agoNot applicable
- lc_finance6 years agoSolution Sage
Hi Anonymous ,
I checked it. When I use the column BU from the Sales table instead of the Order table, the matrix works well.
I see that the formula for the BU name is :
BU Name order = CONCATENATEX( VALUES('Order'[BU]),'Order'[BU],", ")If you want to use it to split sales (and not orders) by BU, why not changing it to:
BU Name sales = CONCATENATEX( VALUES('Sales'[BU]),'Sales'[BU],", ")Let me know if it works,
LC