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
DanduMani104
Helper III
Helper III

Need Help

I have a Excel visual like below

DanduMani104_1-1705489004236.png

 

In this there is Percentage is also there for every bar...at the same time in my power bi

DanduMani104_2-1705489084820.png

visual is like this....How can I made my power bi visual like excel visual

3 REPLIES 3
Anonymous
Not applicable

Hi @DanduMani104 ,

Thanks for reaching out to us with your requirement. Base on your provided screenshots, you are trying to create a similar column chart with difference percentage in Power BI with the one in Excel. I didn't find a direct method to get it in Power BI. However, you can follow the steps below by using tooltips as a workaround.

1. Create a measure to get the percentage

Difference percentage=
VAR _lightblue =
    CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[category] = "A" )
VAR _darkblue =
    CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[category] = "B" )
RETURN
    DIVIDE ( _lightblue - _darkblue, _lightblue )

2. Select your column chart and add the measure onto the Tooltips option

Customizing tooltips in Power BI Desktop - Power BI | Microsoft Learn

vyiruanmsft_0-1705548336000.png

Best Regards

I want to show the increase and decreases in percentage..Like it shows in Excel

Anonymous
Not applicable

Hi @DanduMani104 ,

Could you please provide some raw data in your tables (exclude sensitive data) with Text format and your expected result with special examples and screenshots? Later I will check if there is any workaround to achieve the similar requirement. You can refer the following link to share the required info:

How to provide sample data in the Power BI Forum

 

And It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

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.