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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Vish24
Helper II
Helper II

Need to show percentage in a table display as per defined column

Hello, I have a data table (Named - Goal) with 10 names and their goals and in separate data table(Named-AllSales) I have all sales done by those 10 people over the years.  I am making a table display in my report where I want to show the column with % of sales achcieved as per the goals. Like: 

 

Name    Goal    Total Sales   %Sales Achieved

A           100           10                   10%

B             80          40                       50%

C            120         90                      75%

 

I have made the name,goal,and total sales but I am not getting how to do the %.

 

Please suggest!

Thank you!

 

 

1 ACCEPTED SOLUTION
mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Vish24 ,

 

create a Measure and set the format to percentage.

%Sales Achieved = DIVIDE(SUM(Table[Total Sales]),SUM(Table[Goal]))

 

Regards,

Marcus

Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support. 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


View solution in original post

2 REPLIES 2
mwegener
Most Valuable Professional
Most Valuable Professional

Hi @Vish24 ,

 

create a Measure and set the format to percentage.

%Sales Achieved = DIVIDE(SUM(Table[Total Sales]),SUM(Table[Goal]))

 

Regards,

Marcus

Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support. 

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials


Thank you so much! It worked perfectly.

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors