This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I have created ABC Classification for a report using the below measure
Solved! Go to Solution.
Hi @Sarangaku
Measure cannot be placed in the X-axis of the clustered column chart. You need to change ABC Classification to a calculated column.
ABC Classfication = SWITCH (
TRUE(),
[Total Qty Cumulative %]<= 0.8, "A Class",
[Total Qty Cumulative %] > 0.8 && [Total Qty Cumulative %]<= 0.95, "B Class",
"C Class"
)
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you for your prompt reply! @MattAllington @Ashish_Mathur
Hi @Sarangaku
After calculating the categories, you can use the following dax to calculate how many products each category corresponds to.
Measure =
VAR _calss = SELECTEDVALUE('Table'[ABC Classfication])
RETURN
CALCULATE(COUNTROWS('Table'),FILTER(ALL('Table'),'Table'[ABC Classfication] = _calss))
Result:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you for the response, but in my case ABC Classification is a measure, not a column
Hi @Sarangaku
Measure cannot be placed in the X-axis of the clustered column chart. You need to change ABC Classification to a calculated column.
ABC Classfication = SWITCH (
TRUE(),
[Total Qty Cumulative %]<= 0.8, "A Class",
[Total Qty Cumulative %] > 0.8 && [Total Qty Cumulative %]<= 0.95, "B Class",
"C Class"
)
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Share the download link of the PBI file.
Sorry, my bad
SUMX(productsTableName, if([Total Qty Cumulative %]<= 0.8, 1))
Try this
SUMX(productsTableName, [Total Qty Cumulative %]<= 0.8, 1)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 62 | |
| 47 | |
| 28 | |
| 24 | |
| 20 |