Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
AnjaliBJ
Frequent Visitor

Calculate %

Hi all,

I have a DAX question and hope that someone can help me out.

I have filtered on status: “00 – Tech OPS” that has 2227 orders in total. As you can see in the picture below 2160 of those orders go to the next status “01 – O2C controle”, 17 orders to “VBD Order Check” and 50 orders to “VBD Order Check na afkeuring”.

I want to calculate the % of how many of the orders are going to the next status.
For “01 – O2C controle” should that be: (2160/ 2227 x 100) 96,99%
For “VBD Order Check”: (17/ 2227 x 100) 0,76%
For “VBD Order Check na afkeuring”: (50/ 2227 x 100) 2,25%

 

Orders.png

 

Thank you in advance.

1 REPLY 1
Anonymous
Not applicable

Measure = 
VAR Total = CALCULATE(SUM(Data[Aantal Orders]),ALLEXCEPT(Data,Data[Status_id]))
VAR NextStatus = CALCULATE(SUM(Data[Aantal Orders]),ALLEXCEPT(Data,Data[Next_status_id]))
RETURN DIVIDE(NextStatus,Total,0)

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.