Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
RickSmalls83
Frequent Visitor

New % complete column/ measure required to look at 2 columns( planned v actual)

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;

RickSmalls83_0-1688568848437.png

As preference i would like to do this in Power BI and ont in the excel source data.

 

Thanks,

 

Rick

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @RickSmalls83 

 

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.

View solution in original post

2 REPLIES 2
RickSmalls83
Frequent Visitor

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

v-jingzhang
Community Support
Community Support

Hi @RickSmalls83 

 

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.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.