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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
PaulusB
Frequent Visitor

How to show percentage of total

I have a table containing sold shoes by customer. How do I visualize the sold shoes per sex as a percentage of the total order?

So the nominator = total order quantity per sex

and the denominator = total order quantity

 

OrdernoItemnrOrderQuantityClientnoSex
100A410359Girl
101B510160Girl
101C610160Boy
101D110160Boy
102A210175Girl
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Picture1.png

Expected result: =
VAR orderspersex =
CALCULATE ( SUM ( Data[OrderQuantity] ), ALLEXCEPT ( Data, Data[Sex] ) )
VAR ordersall =
CALCULATE ( SUM ( Data[OrderQuantity] ), REMOVEFILTERS () )
RETURN
DIVIDE ( orderspersex, ordersall )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
PaulusB
Frequent Visitor

Many thanks!

Jihwan_Kim
Super User
Super User

Picture1.png

Expected result: =
VAR orderspersex =
CALCULATE ( SUM ( Data[OrderQuantity] ), ALLEXCEPT ( Data, Data[Sex] ) )
VAR ordersall =
CALCULATE ( SUM ( Data[OrderQuantity] ), REMOVEFILTERS () )
RETURN
DIVIDE ( orderspersex, ordersall )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


amitchandak
Super User
Super User

@PaulusB , these measures can help

 

divide(sum(Table[OrderQuantity]), calculate(sum(Table[OrderQuantity]), allselected()))

 

divide(sumX(filter(Table, table[Sex] ="Girl"), Table[OrderQuantity]), calculate(sum(Table[OrderQuantity]), allselected()))

 

divide(sumX(filter(Table, table[Sex] ="Boy"), Table[OrderQuantity]), calculate(sum(Table[OrderQuantity]), allselected()))

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors