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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
ktkpatra
Frequent Visitor

How to calculate PERCENTAGES based on a single column TOTAL in Power BI desktop

Hi

Could you please help me anyone how to calculate PERCENTAGES based on a single column TOTAL in Power BI in measures

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Thanks for the reply from@gmsamborn and@vicky_please allow me to provide another insight:

Hi,@ktkpatra 

Regarding the issue you raised, my solution is as follows:

1.First I have created the following table and the column names and data are the data you have given:

vlinyulumsft_0-1719392788811.png

2.Create calculated table references:

new = 
VAR SUM1=SUM('Table'[value])
VAR Percent1=
SUMMARIZE (
        'Table',
        [Column1],
        "month", "_Percent of total",
        "value",SUM('Table'[value])/SUM1
        
    )
VAR TAOTAL1=
 SUMMARIZE (
        'Table',
        [Column1],
        "month", "_Total",
        "value",SUM('Table'[value])
        
    )
RETURN
    UNION ('Table', Percent1,TAOTAL1)

3.Here's my final result, which I hope meets your requirements.

vlinyulumsft_1-1719392831632.png

Can you share sample data and sample output in tabular format if I am misunderstanding? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.

 

Please find the attached pbix relevant to the case.

 

Best Regards,

Leroy Lu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

View solution in original post

5 REPLIES 5
ktkpatra
Frequent Visitor

No, It will not solve my problem and not calcualte exact percentage.

Please help me with DAX query to find out percent of total in column 

Anonymous
Not applicable

Thanks for the reply from@gmsamborn and@vicky_please allow me to provide another insight:

Hi,@ktkpatra 

Regarding the issue you raised, my solution is as follows:

1.First I have created the following table and the column names and data are the data you have given:

vlinyulumsft_0-1719392788811.png

2.Create calculated table references:

new = 
VAR SUM1=SUM('Table'[value])
VAR Percent1=
SUMMARIZE (
        'Table',
        [Column1],
        "month", "_Percent of total",
        "value",SUM('Table'[value])/SUM1
        
    )
VAR TAOTAL1=
 SUMMARIZE (
        'Table',
        [Column1],
        "month", "_Total",
        "value",SUM('Table'[value])
        
    )
RETURN
    UNION ('Table', Percent1,TAOTAL1)

3.Here's my final result, which I hope meets your requirements.

vlinyulumsft_1-1719392831632.png

Can you share sample data and sample output in tabular format if I am misunderstanding? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.

 

Please find the attached pbix relevant to the case.

 

Best Regards,

Leroy Lu

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

 

Hi @ktkpatra 

 

Please provide sample data that covers your issue or question completely.
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...

 

A .pbix file with sample data would be best.



Proud to be a Super User!

daxformatter.com makes life EASIER!
gmsamborn
Super User
Super User

Hi @ktkpatra 

 

Besides the solution provided by @vicky_ , you could use 2 measures like these.

 

Amt = SUM( 'Table'[Amt] )

Pct of Total = 
    DIVIDE(
        [Amt],
        CALCULATE(
            [Amt],
            ALL( 'Table' )
        )
    )

 

Here is an example.

Pct of Total.pbix

 

Let me know if you have any questions.



Proud to be a Super User!

daxformatter.com makes life EASIER!
vicky_
Super User
Super User

For simple cases of implicit and explicit aggregations or measures, you can use the built-in row, column or grand total %s. Right click on the field > Show value as > whichever you want. 

vicky__0-1718686627547.png

If you have a more complex calculation requirement, then you need to post some sample data (with any sensitive information removed) so that someone can provide more specific help.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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