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
TDERUSSO
Frequent Visitor

How to create a new percentage measure

How do you divide a calculated field by a measure in Power BI?

 

i.e. % Past Due = (Past Due Amount / Open Amount) * 100

1 ACCEPTED SOLUTION

I was able to get this to work with the function below.  Thanks for your help!

 

Past Due % = ('AR Dashboard'[Past Due Amount] / SUM('AR Dashboard'[Open Amount])) * 100

View solution in original post

6 REPLIES 6
v-huizhn-msft
Employee
Employee

Hi @TDERUSSO,

As @Sean posted, you will need a clustering function in your measure. Yon can use SUM, MAX, MIN,Average and so on. If the Past Due Amount value is unique, the results of SUM, MAX, MIN,Average are equal. Please add the function, you will get what you want.

Best Regards,
Angelia

I was able to get this to work with the function below.  Thanks for your help!

 

Past Due % = ('AR Dashboard'[Past Due Amount] / SUM('AR Dashboard'[Open Amount])) * 100

Hi @TDERUSSO

I am very gald to hear you find a solution, please mark it as answer, so other people will find solution easily.

If you have other issues, please let me know.

Best Regards,
Angelia

 

Sean
Community Champion
Community Champion

@TDERUSSO

 

Is this what you are trying to do?

 

% Past Due Measure =
DIVIDE ( SUM ( Table[Past Due Amount Column] ), [Open Amount Measure], 0 )

 

You can then format this as %

TDERUSSO
Frequent Visitor

Thanks for the quick response Sean.

 

Yes, this is what I'm trying to do, but the past due amount is a calculated field and the open amount is a measure.  When I try to put the formula in this way, the argument won't allow me to select past due amount.  It wants me to select something from the table.

Sean
Community Champion
Community Champion

You can't select a COLUMN because you are creating a MEASURE

 

so any COLUMN you want to reference needs to be aggregated somehow - did you wrap it in SUM ( TableName[Column Name] )

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.