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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
smithub
Helper I
Helper I

Calculate percentage

Hi all, 

Hoping someone can help create a measure that calculates percentages.

You can see in the table below there are 2 types of Offer - AIP & LOF and under each offer you will see the following labels:

Above LTI (15%), LTI Compliant, Above LTV (15%) & LTV Compliant.

Power BI calculates the subtotal for each offer per line item.

I want to create a measure that calculates Above LTI% for AIP & LOF  by calculating 'Above LTI (15%)'/'Total' & 'Above LTV (15%)'/'Total' for each line item.

 

smithub_0-1697822446612.png

Hope this makes sense. 

Thanks.

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

Hi @smithub ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

vtangjiemsft_0-1698047136977.png

(2) We can create measures. 

Measure = 
var _a=CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Name]=MAX('Table'[Name]) && 'Table'[Type]=MAX('Table'[Type]) && 'Table'[label]="Above LTI (15%)"))
var _b= CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Name]=MAX('Table'[Name]) && 'Table'[Type]=MAX('Table'[Type]) ))
return IF(SELECTEDVALUE('Table'[label])="Above LTI (15%)",DIVIDE(_a,_b),BLANK())
Measure 2 = 
var _a=CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Name]=MAX('Table'[Name]) && 'Table'[Type]=MAX('Table'[Type]) && 'Table'[label]="Above LTV (15%)"))
var _b= CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Name]=MAX('Table'[Name]) && 'Table'[Type]=MAX('Table'[Type]) ))
return IF(SELECTEDVALUE('Table'[label])="Above LTV (15%)",DIVIDE(_a,_b),BLANK())

(3) Then the result is as follows.

vtangjiemsft_1-1698047453163.png

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

View solution in original post

2 REPLIES 2
v-tangjie-msft
Community Support
Community Support

Hi @smithub ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data.  

vtangjiemsft_0-1698047136977.png

(2) We can create measures. 

Measure = 
var _a=CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Name]=MAX('Table'[Name]) && 'Table'[Type]=MAX('Table'[Type]) && 'Table'[label]="Above LTI (15%)"))
var _b= CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Name]=MAX('Table'[Name]) && 'Table'[Type]=MAX('Table'[Type]) ))
return IF(SELECTEDVALUE('Table'[label])="Above LTI (15%)",DIVIDE(_a,_b),BLANK())
Measure 2 = 
var _a=CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Name]=MAX('Table'[Name]) && 'Table'[Type]=MAX('Table'[Type]) && 'Table'[label]="Above LTV (15%)"))
var _b= CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),'Table'[Name]=MAX('Table'[Name]) && 'Table'[Type]=MAX('Table'[Type]) ))
return IF(SELECTEDVALUE('Table'[label])="Above LTV (15%)",DIVIDE(_a,_b),BLANK())

(3) Then the result is as follows.

vtangjiemsft_1-1698047453163.png

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

lbendlin
Super User
Super User

Please provide sample data (with sensitive information removed) that covers your issue or question completely, in a usable format (not as a screenshot). Leave out anything not related to the issue.
If you are unsure how to do that please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.

If you want to get answers faster please refer to https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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