March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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 |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
12 | |
9 | |
7 |
User | Count |
---|---|
38 | |
32 | |
29 | |
12 | |
11 |