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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bgarland
Helper I
Helper I

Calculated Percentages (filtered)

Hi all. I'm trying to re-create a spreadsheet calculation (attached photo). It's pretty simple except for the fact that the percentage needs to only calculate where the dimension = "High". In the screenshot you can see that the cell formula specifically calls out that subtotal line for division by the grand total. I am familiar with the DAX expression to DIVIDE where CALCULATE is used with ALLSELECTED, but I don't know how to hard-code that dimension filter into the expression.

 

2018-08-09_090948.jpg

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

Hi bgarland ,

 

Try measure below and check if it can meet your requirement:

 

Resukt =
CALCULATE (
    aggregation,
    Table[dimension] = "high",
    ALLSELECTED ( Table[Column] )
)

Regards,

Jimmy Tao

View solution in original post

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

Hi bgarland ,

 

Try measure below and check if it can meet your requirement:

 

Resukt =
CALCULATE (
    aggregation,
    Table[dimension] = "high",
    ALLSELECTED ( Table[Column] )
)

Regards,

Jimmy Tao

That should work. Thanks!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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