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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Percentage Matrix based on one category only

Hi Experts

 

How would i find the percentage of the total value for one category only ie. over 6 weeks total divided by the grand total
see image 
Result should be 1- (35 /583) this is a matrix table.

Checkers111_0-1657015870625.png

 

1 ACCEPTED SOLUTION

In that case, try:

 

 

Under 6 weeks / Total =
VAR _all =
    CALCULATE ( [Measure], ALL ( 'Table' ) )
RETURN
    IF (
        SELECTEDVALUE ( Table[Period] ) = "Under 6 weeks",
        IF (
            ISINSCOPE ( Table[BookedUnbooked] ),
            BLANK (),
            1 - DIVIDE ( [Measure], _all )
        )
    )

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

3 REPLIES 3
PaulDBrown
Community Champion
Community Champion

It depends on the structureo the model/tables and the fields used in the matrix ( you need to adapt the code to include the actual Tables/columns and measure) Something along the lines of:

 

Over 6 weeks / Total =
VAR _all =
    CALCULATE ( [Measure], ALL ( 'Table' ) )
RETURN
    IF (
        SELECTEDVALUE ( Table[Period] ) = "Over 6 weeks",
       1- DIVIDE ( [Measure], _all )
    )

 

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Anonymous
Not applicable

Hi Paul - i like the idea but it need to be the total of the under 6 weeks - not the booked and unbooked items

In that case, try:

 

 

Under 6 weeks / Total =
VAR _all =
    CALCULATE ( [Measure], ALL ( 'Table' ) )
RETURN
    IF (
        SELECTEDVALUE ( Table[Period] ) = "Under 6 weeks",
        IF (
            ISINSCOPE ( Table[BookedUnbooked] ),
            BLANK (),
            1 - DIVIDE ( [Measure], _all )
        )
    )

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.