The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
11 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
14 | |
14 | |
9 | |
7 |