<?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: tornado chart (percentage and real number together) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3826886#M149622</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;To display both the real number and the percentage together as data labels in your tornado charts, you can concatenate them within your measure. Below is a modified version of your measure &lt;/SPAN&gt;Tornado_Percent&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;Tornado_Percent_Label =&lt;BR /&gt;VAR TotalAmount = CALCULATE ( [AOP @FY24 + AOP @FY25] )&lt;BR /&gt;VAR TotalAmountAllYears =&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[AOP @FY24 + AOP @FY25],&lt;BR /&gt;ALLEXCEPT ( 'Calendar', 'Calendar'[Fiscal Year] )&lt;BR /&gt;)&lt;BR /&gt;VAR Percentage = DIVIDE ( TotalAmount, TotalAmountAllYears )&lt;BR /&gt;RETURN&lt;BR /&gt;FORMAT ( TotalAmount, "#,##0" ) &amp;amp; " (" &amp;amp; FORMAT ( Percentage, "0%" ) &amp;amp; ")"&lt;BR /&gt;&lt;BR /&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Apr 2024 10:59:40 GMT</pubDate>
    <dc:creator>johnbasha33</dc:creator>
    <dc:date>2024-04-10T10:59:40Z</dc:date>
    <item>
      <title>tornado chart (percentage and real number together)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3826647#M149612</link>
      <description>&lt;P&gt;I have 2 tornado charts, i would like to see percantage and the real number together as data label, if it is possible (without creating a bookmark)? many thanks in advance.&lt;BR /&gt;Expected Answer:&lt;BR /&gt;4832K (26%) 914K (25%)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Tornado_Percent =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;[AOP @FY24 + AOP @FY25]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[AOP @FY24 + AOP @FY25]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Calendar'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Calendar'&lt;/SPAN&gt;&lt;SPAN&gt;[Fiscal Year]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 09:53:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3826647#M149612</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-10T09:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: tornado chart (percentage and real number together)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3826886#M149622</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;To display both the real number and the percentage together as data labels in your tornado charts, you can concatenate them within your measure. Below is a modified version of your measure &lt;/SPAN&gt;Tornado_Percent&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;BR /&gt;Tornado_Percent_Label =&lt;BR /&gt;VAR TotalAmount = CALCULATE ( [AOP @FY24 + AOP @FY25] )&lt;BR /&gt;VAR TotalAmountAllYears =&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[AOP @FY24 + AOP @FY25],&lt;BR /&gt;ALLEXCEPT ( 'Calendar', 'Calendar'[Fiscal Year] )&lt;BR /&gt;)&lt;BR /&gt;VAR Percentage = DIVIDE ( TotalAmount, TotalAmountAllYears )&lt;BR /&gt;RETURN&lt;BR /&gt;FORMAT ( TotalAmount, "#,##0" ) &amp;amp; " (" &amp;amp; FORMAT ( Percentage, "0%" ) &amp;amp; ")"&lt;BR /&gt;&lt;BR /&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 10:59:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3826886#M149622</guid>
      <dc:creator>johnbasha33</dc:creator>
      <dc:date>2024-04-10T10:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: tornado chart (percentage and real number together)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3827675#M149651</link>
      <description>&lt;P&gt;thanks but i guess it is not working.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Apr 2024 13:36:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3827675#M149651</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-10T13:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: tornado chart (percentage and real number together)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3882082#M151518</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;As checked the Format pane settings, there is no option to customize the data label of&amp;nbsp;&lt;SPAN&gt;tornado chart&lt;/SPAN&gt;...&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 09:45:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/tornado-chart-percentage-and-real-number-together/m-p/3882082#M151518</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-05-01T09:45:00Z</dc:date>
    </item>
  </channel>
</rss>

