<?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: subtracting 100 from each value in another column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4070746#M161605</link>
    <description>&lt;P&gt;Great thank you&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jul 2024 07:52:50 GMT</pubDate>
    <dc:creator>Jay2022</dc:creator>
    <dc:date>2024-07-31T07:52:50Z</dc:date>
    <item>
      <title>subtracting 100 from each value in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4069369#M161555</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;i have % increase in one column eg 60%, 80% for various organisations and i want to show the remainder eg 40% and 20% in another so i can show stacked bar charts etc how do i create a column which deducts 100 from each percentage&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tried something like % remaing = 100 - % increase but that didn't work&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help greatly appreciated&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 30 Jul 2024 14:42:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4069369#M161555</guid>
      <dc:creator>Jay2022</dc:creator>
      <dc:date>2024-07-30T14:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: subtracting 100 from each value in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4069441#M161557</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="392269" data-lia-user-login="Jay2022" class="lia-mention lia-mention-user"&gt;Jay2022&lt;/a&gt;&amp;nbsp;Try 1 - [% increase]. If that's not it, then post sample data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry, having trouble following, can you post sample data as text and expected output?&lt;BR /&gt;Not really enough information to go on, please first check if your issue is a common issue listed here: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also, please see this post regarding How to Get Your Question Answered Quickly: &lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The most important parts are:&lt;BR /&gt;1. Sample data as text, use the table tool in the editing bar&lt;BR /&gt;2. Expected output from sample data&lt;BR /&gt;3. Explanation in words of how to get from 1. to 2.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 15:12:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4069441#M161557</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-07-30T15:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: subtracting 100 from each value in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4069485#M161560</link>
      <description>&lt;P&gt;You can use below dax function to get your expected result.&lt;BR /&gt;% Remaining = 100 - [% Increase]&lt;BR /&gt;&lt;BR /&gt;Replace % Increase with the actual name of your column if it differs&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your percentages are in decimal format (like 0.60 instead of 60%), adjust the formula accordingly:&lt;/P&gt;&lt;P&gt;% Remaining = 1 - [% Increase]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then use this in your barchart,hope this works.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 15:36:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4069485#M161560</guid>
      <dc:creator>Arjun_TK</dc:creator>
      <dc:date>2024-07-30T15:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: subtracting 100 from each value in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4070746#M161605</link>
      <description>&lt;P&gt;Great thank you&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 07:52:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/subtracting-100-from-each-value-in-another-column/m-p/4070746#M161605</guid>
      <dc:creator>Jay2022</dc:creator>
      <dc:date>2024-07-31T07:52:50Z</dc:date>
    </item>
  </channel>
</rss>

