Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
I am trying to set up a formula in DAX but not sure where to start. I have this on excel but need to translate this to DAX format for powerbi.
So a bit of background. I am trying to understand the percentage completion for a current project. For example the team have to go from 6000 (baeline) to 1150 (Target) for them to completed the acitvity. Therefore when the team hit 1150 they wouldve completed 100%. So i did an interpolation formula on excel as i wasnt sure how to do this on DAX.
The formula is (-100(Current No - Target No)/(Baseline-Target No))+100.
Can someone help me.
RU
Hi @Anonymous ,
you can make a new measure with the following DAX
Completion % = -100 * DIVIDE(Current No - Target No,Baseline-Target No,0) + 100
Regards,
Aditya
A better way to write the formula would be
Completion % = 100(1- DIVIDE(Current No - Target No,Baseline-Target No,0))
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
7 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |