Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
Hi,
I want to create a calculation that shows the below right sided columns as actual amounts complete against the Scope/ Planned data in the left side column;
As preference i would like to do this in Power BI and ont in the excel source data.
Thanks,
Rick
Solved! Go to Solution.
You can create a measure with the following DAX.
New % complete = DIVIDE(SUM('TableName'[Actual amount]),SUM('TableName'[Planned Amount]))
Or create a calculated column in the original table with the following DAX.
New % complete = DIVIDE('TableName'[Actual amount],'TableName'[Planned Amount])
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
know how i can ' minus' the difference between to columns? I want to a measure or column that shows the variance between to columns...
Thanks,
Rick
You can create a measure with the following DAX.
New % complete = DIVIDE(SUM('TableName'[Actual amount]),SUM('TableName'[Planned Amount]))
Or create a calculated column in the original table with the following DAX.
New % complete = DIVIDE('TableName'[Actual amount],'TableName'[Planned Amount])
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 64 | |
| 49 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 119 | |
| 117 | |
| 38 | |
| 36 | |
| 29 |