<?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 with DAX to show percentage based on the result from another DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2028408#M45414</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Aug 2021 15:59:39 GMT</pubDate>
    <dc:creator>Helpful_Fun4848</dc:creator>
    <dc:date>2021-08-20T15:59:39Z</dc:date>
    <item>
      <title>Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026399#M45321</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I created the following measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure 1 =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUM(vbi_PO[Total]),&lt;BR /&gt;vbi_PO[SupplierName] = "ABC Company"&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to create Measure 2 where it will give me the percentage depending on the result of Measure 1. So say if the result of Measure 1 between 1 - 100,000 then it is 10%, if it's between 100,001 - 500,000 then it is 20%.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would be the DAX for Measure 2?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much appreciated for any help!!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 14:54:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026399#M45321</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-19T14:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026424#M45324</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="282858" data-lia-user-login="Helpful_Fun4848" class="lia-mention lia-mention-user"&gt;Helpful_Fun4848&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can try below code:-&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure2 =
IF (
    AND ( [Measure] &amp;gt; 1, [Measure] &amp;lt; 100000 ),
    FORMAT ( 0.1, "0%" ),
    IF ( AND ( [Measure] &amp;gt; 100001, [Measure] &amp;lt; 500000 ), FORMAT ( 0.2, "0%" ) )
)&lt;/LI-CODE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Samarth&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 15:05:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026424#M45324</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2021-08-19T15:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026461#M45326</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did try and create the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure 2 =&lt;/P&gt;&lt;P&gt;IF (AND([Measure 1] &amp;gt; 1000000, [Measure 1] &amp;lt; 5000000), FORMAT (0.16, "0%"),&lt;BR /&gt;IF (AND([Measure 1] &amp;gt; 5000001, [Measure 1] &amp;lt; 9000000), FORMAT (0.17, "0%"),&lt;BR /&gt;IF (AND([Measure 1] &amp;gt; 9000001, Measure 1] &amp;lt; 12000000), FORMAT (0.18, "0%"),&lt;BR /&gt;IF (AND([Measure 1] &amp;gt; 12000001, [Measure 1] &amp;lt; 15000000), FORMAT (0.19, "0%"),&lt;BR /&gt;IF (AND([Measure 1] &amp;gt; 15000000, FORMAT (0.20, "0%"))))))&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And received the following error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 15:37:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026461#M45326</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-19T15:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026708#M45333</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="282858" data-lia-user-login="Helpful_Fun4848" class="lia-mention lia-mention-user"&gt;Helpful_Fun4848&lt;/a&gt;&amp;nbsp; you can refer below code:-&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure 2 = 
IF (
    AND([Measure] &amp;gt; 1000000, [Measure] &amp;lt; 5000000), FORMAT (0.16, "0%"),
        IF (AND([Measure] &amp;gt; 5000001, [Measure] &amp;lt; 9000000), FORMAT (0.17, "0%"),
            IF (AND([Measure] &amp;gt; 9000001, [Measure] &amp;lt; 12000000), FORMAT (0.18, "0%"),
                IF (AND([Measure] &amp;gt; 12000001, [Measure] &amp;lt; 15000000), FORMAT (0.19, "0%"),
                    IF (AND([Measure] &amp;gt; 15000000, FORMAT (0.20, "0%")),[Measure])
                )
            )
        )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 19 Aug 2021 18:13:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026708#M45333</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2021-08-19T18:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026892#M45335</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&amp;nbsp;code works, however, I'm still having an issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created 5 different measures for 5 different companies using the same code format as shown on your message above. 4 works but 1 and the one that didn't work is the one where the percentage is under the last and highest category which is 20% for more than $15M if I'm using what's on the code on you previous message but for this particular company it is 19% for more than $6M.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Received the following error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;"Cannot convert value '19%' of type Text to type True/False."&lt;/P&gt;</description>
      <pubDate>Thu, 19 Aug 2021 20:21:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2026892#M45335</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-19T20:21:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2027267#M45353</link>
      <description>&lt;P&gt;Could you please share the code what you are trying with the snapshot of error?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 03:40:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2027267#M45353</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2021-08-20T03:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2028403#M45412</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 15:55:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2028403#M45412</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-20T15:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2028405#M45413</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="282858" data-lia-user-login="Helpful_Fun4848" class="lia-mention lia-mention-user"&gt;Helpful_Fun4848&lt;/a&gt;&amp;nbsp;Can you please share the code as well&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 15:57:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2028405#M45413</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2021-08-20T15:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2028408#M45414</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Aug 2021 15:59:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2028408#M45414</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-20T15:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2035764#M45670</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm assuming this is a mystery as to why the other identical 4 codes works but not this one?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Aug 2021 17:52:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2035764#M45670</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-24T17:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2036604#M45691</link>
      <description>&lt;P&gt;Try this :-&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Westburne =
IF (
    AND ( [Westburne Current $] &amp;gt; 1000000, [Westburne Current $] &amp;lt;= 3000000 ),
    FORMAT ( 0.16, "0%" ),
    IF (
        AND ( [Westburne Current $] &amp;gt; 3000000, [Westburne Current $] &amp;lt;= 4500000 ),
        FORMAT ( 0.17, "0%" ),
        IF (
            AND ( [Westburne Current $] &amp;gt; 4500000, [Westburne Current $] &amp;lt;= 6000000 ),
            FORMAT ( 0.18, "0%" ),
            IF (
                AND ( [Westburne Current $] &amp;gt; 6000000, [Westburne Current $] &amp;lt; 15000000 ),
                FORMAT ( 0.19, "0%" ),
                BLANK ()
            )
        )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;if you still got error then kindly share&amp;nbsp; your PBI file after removing sensitive data.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 05:25:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2036604#M45691</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2021-08-25T05:25:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2038659#M45754</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&lt;/P&gt;&lt;P&gt;It works, much thx! One issue though: I put the result on the table along with the other 4 codes where the result from all 4 are being aligned to the right while the result from the last code is being aligned to the left. Is there a way to change the alignment?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Aug 2021 20:22:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2038659#M45754</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-25T20:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2039295#M45764</link>
      <description>&lt;P&gt;You can set alignment for specific column through field formatting option in the "Format Pane". You can select field which you want to align and then select respective alignment.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 04:26:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2039295#M45764</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2021-08-26T04:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2041411#M45842</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are 4 columns on the table and when I change the alignment, it only affect the first column. The code that we were discussing previously is on the last column.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Aug 2021 20:48:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2041411#M45842</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-26T20:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2041854#M45859</link>
      <description>&lt;P&gt;Could you please share screenshot what you are referring, it helpful to understand your issue.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 04:23:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2041854#M45859</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2021-08-27T04:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2043297#M45890</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Originally, I just want to align the last column to the right, but, aligning all columns to be the same is not something that I'll object. However, the alignment only affect the first column.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Aug 2021 16:39:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2043297#M45890</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-30T16:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2043439#M45891</link>
      <description>&lt;P&gt;You can select last column from western current % column inside field formatting option and then select alignment accordingly. You can refer below screenshot for same&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 17:41:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2043439#M45891</guid>
      <dc:creator>Samarth_18</dc:creator>
      <dc:date>2021-08-27T17:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with DAX to show percentage based on the result from another DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2043651#M45895</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312802" data-lia-user-login="Samarth_18" class="lia-mention lia-mention-user"&gt;Samarth_18&lt;/a&gt;&amp;nbsp;got it, much thx!!&lt;/P&gt;</description>
      <pubDate>Fri, 27 Aug 2021 21:32:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-with-DAX-to-show-percentage-based-on-the-result-from/m-p/2043651#M45895</guid>
      <dc:creator>Helpful_Fun4848</dc:creator>
      <dc:date>2021-08-27T21:32:08Z</dc:date>
    </item>
  </channel>
</rss>

