Forum Discussion
KC1234
8 years agoRegular Visitor
Vendor ABC Analysis
Hi all, I am pretty new to Power BI and so far I am enjoying it, however, I am having a great difficulty in using Dax. I want to create a Vendor ABC analysis by spend and can't seem to figure out...
Ashish_Mathur
Super User
8 years agoHi,
Please show the exact result which you are expecting.
Zubair_Muhammad
Community Champion
8 years ago
If you want your ABC analysis to respond to filters you can use ALLSELECTED in Greg's formula
i.e.
Percentile =
DIVIDE (
SUM ( Vendors[ SPEND ] ),
CALCULATE ( SUM ( Vendors[ SPEND ] ), ALLSELECTED () )
)