Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi everyone - I have the following measure:
PROFIT % OF NSR = divide(sum('Office Earnings'[Group Task NumberCurrent Profit]),sum('Office Earnings'[Group Task NumberCurrent Net Revenue]))
Is there a way to add a line to this that makes the "Profit % of NSR" zero if the sum of 'Net Revenue' and sum of 'Profit' are both negative numbers?
Solved! Go to Solution.
Hi @kmschroer ,
How about :
IF (
AND (
SUM ( 'Office Earnings'[Group Task NumberCurrent Profit] ) < 0,
SUM ( 'Office Earnings'[Group Task NumberCurrent Net Revenue] ) < 0
),
0,
DIVIDE (
SUM ( 'Office Earnings'[Group Task NumberCurrent Profit] ),
SUM ( 'Office Earnings'[Group Task NumberCurrent Net Revenue] )
)
)
Let me know, if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
| Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
| Also happily accepting Kudos 🙂 |
| Feel free to connect with me on LinkedIn! | |
| #proudtobeasuperuser | |
Hi @kmschroer ,
How about :
IF (
AND (
SUM ( 'Office Earnings'[Group Task NumberCurrent Profit] ) < 0,
SUM ( 'Office Earnings'[Group Task NumberCurrent Net Revenue] ) < 0
),
0,
DIVIDE (
SUM ( 'Office Earnings'[Group Task NumberCurrent Profit] ),
SUM ( 'Office Earnings'[Group Task NumberCurrent Net Revenue] )
)
)
Let me know, if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
| Did I answer your question❓➡️ Please, mark my post as a solution ✔️ |
| Also happily accepting Kudos 🙂 |
| Feel free to connect with me on LinkedIn! | |
| #proudtobeasuperuser | |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 11 | |
| 10 | |
| 8 |