Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
How do you divide a calculated field by a measure in Power BI?
i.e. % Past Due = (Past Due Amount / Open Amount) * 100
Solved! Go to 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
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
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 %
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.
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] )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
147 | |
85 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |