Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello, I need to create a calculated percentage by using a formula that would allow me to do = 1-(variance/opportunity) I know this is an Excel formula but I need to find a DAX equivalent.
Solved! Go to Solution.
Hello @Anonymous
why what's your issue? I think you can do the same in dax, like measure= 1- divide(variance, opportunity)
Thank you I really appreciate your reply. It works, of course.
Hello @Anonymous
You can use below one in the creating a Measure
Percentage = 1 - DIVIDE( TableName[Variance], TableName[Opportunity] )
Thank you I really appreciate your reply. It works, of course.
Hello @Anonymous
why what's your issue? I think you can do the same in dax, like measure= 1- divide(variance, opportunity)
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |