<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Need Help in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3645042#M48827</link>
    <description>&lt;P&gt;I want to show the increase and decreases in percentage..Like it shows in Excel&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jan 2024 06:11:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-01-18T06:11:51Z</dc:date>
    <item>
      <title>Need Help</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3643374#M48802</link>
      <description>&lt;P&gt;I have a Excel visual like below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DanduMani104_1-1705489004236.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1027027i8D4FE277FD0D6362/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DanduMani104_1-1705489004236.png" alt="DanduMani104_1-1705489004236.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this there is Percentage is also there for every bar...at the same time in my power bi&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DanduMani104_2-1705489084820.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1027028i6A3D2C2DBF9E2DAA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DanduMani104_2-1705489084820.png" alt="DanduMani104_2-1705489084820.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;visual is like this....How can I made my power bi visual like excel visual&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2024 10:59:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3643374#M48802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-01-17T10:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3644846#M48824</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;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.&lt;/P&gt;
&lt;P&gt;1. Create a measure to get the percentage&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;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 )&lt;/LI-CODE&gt;
&lt;P&gt;2. Select your column chart and add the measure onto the &lt;STRONG&gt;Tooltips&lt;/STRONG&gt; option&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-custom-tooltips?tabs=powerbi-desktop" target="_blank"&gt;Customizing tooltips in Power BI Desktop - Power BI | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vyiruanmsft_0-1705548336000.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1027427i69004F5D2A0EBF2A/image-size/large?v=v2&amp;amp;px=999" role="button" title="vyiruanmsft_0-1705548336000.png" alt="vyiruanmsft_0-1705548336000.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 03:31:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3644846#M48824</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-01-18T03:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3645042#M48827</link>
      <description>&lt;P&gt;I want to show the increase and decreases in percentage..Like it shows in Excel&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 06:11:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3645042#M48827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-01-18T06:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3645358#M48831</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Could you&amp;nbsp;&lt;SPAN&gt;please provide some&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;raw data&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;in your tables (&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;) with&amp;nbsp;&lt;/SPAN&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;&lt;SPAN&gt;format&amp;nbsp;and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with special examples and screenshots?&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;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:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C01%7CClaire.Dong%40microsoft.com%7Cada9149bd91546a8432508dacd31ef9b%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638047911607737134%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&amp;amp;sdata=EJlYfclgtrjgAEYj9Uo1AauqxaQm3hlQsjJMo4zCY1M%3D&amp;amp;reserved=0" target="_blank" rel="nofollow noopener noreferrer"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;It is better&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;if you can share a&amp;nbsp;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;pbix file. You can refer the following link to upload the file to the community. Thank you.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FDesktop%2FHow-to-upload-PBI-in-Community%2Fm-p%2F1672886&amp;amp;data=04%7C01%7Cv-yiruan%40microsoft.com%7C4f580813734d4a8355b008da16f6e91a%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637847547341062885%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&amp;amp;sdata=YJvujige2YITXKbKED9JieQm5LBdf%2F3IYPM4ggdiijQ%3D&amp;amp;reserved=0" target="_blank" rel="nofollow noopener noreferrer"&gt;How to upload PBI in Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 08:25:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Need-Help/m-p/3645358#M48831</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-01-18T08:25:40Z</dc:date>
    </item>
  </channel>
</rss>

