<?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 Apply specific percentage to values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206679#M19386</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with a specific value (=total investment) on which I'd like to apply specific percentages (=fixed): 45% of the total investment, and then 10% of the total investment to use then those calculated values for other calculation. WHat formula should I use to create those 45% / 10% calculation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
    <pubDate>Tue, 07 Jul 2020 14:13:08 GMT</pubDate>
    <dc:creator>rodieade</dc:creator>
    <dc:date>2020-07-07T14:13:08Z</dc:date>
    <item>
      <title>Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206679#M19386</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table with a specific value (=total investment) on which I'd like to apply specific percentages (=fixed): 45% of the total investment, and then 10% of the total investment to use then those calculated values for other calculation. WHat formula should I use to create those 45% / 10% calculation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 14:13:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206679#M19386</guid>
      <dc:creator>rodieade</dc:creator>
      <dc:date>2020-07-07T14:13:08Z</dc:date>
    </item>
    <item>
      <title>Re: Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206681#M19387</link>
      <description>&lt;P&gt;Sounds great. What's your question?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 14:08:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206681#M19387</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2020-07-07T14:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206691#M19388</link>
      <description>&lt;P&gt;Sorry went to quick on the message. I'd like to undertsand what formula to use to create the 45% / 10% calculation on a specific field. thanks&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 14:13:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206691#M19388</guid>
      <dc:creator>rodieade</dc:creator>
      <dc:date>2020-07-07T14:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206704#M19389</link>
      <description>Something like&lt;BR /&gt;Measure = 0.45 * CALCULATE ( SUM ( total investment ), ALL ( ColumnNameThatYouWillSliceBy ) )</description>
      <pubDate>Tue, 07 Jul 2020 14:21:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206704#M19389</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2020-07-07T14:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206791#M19393</link>
      <description>&lt;P&gt;Thanks, I was so able to apply specific percentage to the values.&lt;/P&gt;&lt;P&gt;Now I am a bit stuck at the next step of my calculations - posting a picture to make it more clear (ultimately looking to calculate last line = full category A). I need to apply the percentages of each $ field per category ; and then do some sums. Can I include the filtering of category in the formulas?&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 14:54:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206791#M19393</guid>
      <dc:creator>rodieade</dc:creator>
      <dc:date>2020-07-07T14:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206848#M19395</link>
      <description>&lt;P&gt;Maybe something like:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Full Category A =
CALCULATE (
    SUM ( Table[TotalInvestment] ),
    KEEPFILTERS ( Category[Column] = "A" )
)
    + 0.45
        * CALCULATE (
            SUM ( Table[TotalInvestment] ),
            KEEPFILTERS ( Category[Column] = "D" )
        )&lt;/LI-CODE&gt;&lt;P&gt;How will you add that the last 2 rows of the visuals?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 15:09:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206848#M19395</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2020-07-07T15:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206906#M19399</link>
      <description>&lt;P&gt;thanks, that works.&lt;/P&gt;&lt;P&gt;indeed I dont know how to build the rows - is it possible?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 15:34:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206906#M19399</guid>
      <dc:creator>rodieade</dc:creator>
      <dc:date>2020-07-07T15:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206943#M19401</link>
      <description>&lt;P&gt;If you only ever have categories A to D then you can create a measure for each (plus the two measures for the last two lines).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The moment you have a dynamic list of categories you're basically out of luck.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 15:52:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1206943#M19401</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2020-07-07T15:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: Apply specific percentage to values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1208659#M19426</link>
      <description>&lt;P&gt;Try something like this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CustomTotalSales = SUMX( CustomBrands, CustomBrands[TotalSales] )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 08 Jul 2020 09:01:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Apply-specific-percentage-to-values/m-p/1208659#M19426</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2020-07-08T09:01:43Z</dc:date>
    </item>
  </channel>
</rss>

