i need help in Power Bi on how to count row of status (Critical,Reorder,Cutoff,Ideal,Overflow) as attached in Power BI?
Thank you so much.
Use this calculated table
Status Count =
SUMMARIZE(
'Table',
'Table'[Status],
"Count", COUNTROWS('Table')
)
With this sample data:
You'll get the following result: