<?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: Dax measure to subtract one value from another without changing other values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672264#M79722</link>
    <description>&lt;P&gt;The names (text) inside the group, like: 00002 O, 00003 D, 00040 R, 0001 P...&lt;/P&gt;</description>
    <pubDate>Mon, 01 Aug 2022 08:51:52 GMT</pubDate>
    <dc:creator>L_K_</dc:creator>
    <dc:date>2022-08-01T08:51:52Z</dc:date>
    <item>
      <title>Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669366#M79527</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I need some help with displaying my data in the matrix.&lt;/P&gt;&lt;P&gt;I want to create a dax measure to subtract one value from another without changing other values as shown in the added picture.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have an idea how the dax should be constructed but I can’t figure it out, so every help would be very appreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 11:28:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669366#M79527</guid>
      <dc:creator>L_K_</dc:creator>
      <dc:date>2022-07-29T11:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669390#M79530</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394753" data-lia-user-login="L_K_" class="lia-mention lia-mention-user"&gt;L_K_&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can use something like&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Wanted Result =
SUMX (
    SUMMARIZE ( TableName, TableName[Grooup], TableName[ColumnName] ),
    CALCULATE (
        VAR CurrentValue =
            SUM ( TableName[Value] )
        VAR Value40R =
            CALCULATE ( SUM ( TableName[Value] ), TableName[ColumnName] = "00040 R" )
        RETURN
            IF (
                SELECTEDVALUE ( TableName[ColumnName] ) = "00001 P",
                CurrentValue - Value40R,
                CurrentValue
            )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 29 Jul 2022 11:40:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669390#M79530</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-29T11:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669443#M79534</link>
      <description>&lt;P&gt;Thank you for your help, but I'm not getting the right numbers.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 12:03:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669443#M79534</guid>
      <dc:creator>L_K_</dc:creator>
      <dc:date>2022-07-29T12:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669458#M79536</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394753" data-lia-user-login="L_K_" class="lia-mention lia-mention-user"&gt;L_K_&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;What is value? Is it a measure or a summarized column? I also see year at the left top corner. Are you slicing also by year? From which table? Please provide more context with some screeshots for better undertanding. Also please provide a screenshot of you are getting now and what are you expecting to see.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 12:13:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669458#M79536</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-29T12:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669500#M79539</link>
      <description>&lt;P&gt;Hello &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I'm sorry but I don't know how to mask so much data to show you everything. The groups and names are in a different table than the values, they are connected by an ID and the values in the matrix are a measure. The measure has a bunch of filters and everything is also filtered by year and month from a date table.&lt;/P&gt;&lt;P&gt;I thought about making a measure that gives every group name value the number value of 00040 R, and then make an if statement that when the name is 00001 P it subtracts the 00040 R value if true, and if false it gives the original numbers. But I don’t know how to give every name the same value. If it makes sense.&lt;/P&gt;&lt;P&gt;I’m sorry I can’t provide you with all the information and I am really thankful for your response.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 12:32:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669500#M79539</guid>
      <dc:creator>L_K_</dc:creator>
      <dc:date>2022-07-29T12:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669518#M79540</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394753" data-lia-user-login="L_K_" class="lia-mention lia-mention-user"&gt;L_K_&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are&amp;nbsp;&lt;SPAN&gt;groups&amp;nbsp;and Names in the same table? What are the relationships between the tables?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 12:38:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669518#M79540</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-29T12:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669559#M79545</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The tables kind of look like this&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 1 - one to many * Table 2&lt;/P&gt;&lt;P&gt;Date table - one to many * Table 2&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 12:57:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669559#M79545</guid>
      <dc:creator>L_K_</dc:creator>
      <dc:date>2022-07-29T12:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669587#M79547</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394753" data-lia-user-login="L_K_" class="lia-mention lia-mention-user"&gt;L_K_&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please try&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Wanted Result =
SUMX (
    CROSSJOIN (
        VALUES ( DateTable[Year] ),
        SUMMARIZE ( Table1, Table1[Group], Table1[Name] )
    ),
    CALCULATE (
        VAR CurrentValue =
            SUM ( Table2[Value] )
        VAR Value40R =
            CALCULATE (
                SUM ( Table2[Value] ),
                Table1[Name] = "00040 R",
                ALL ( Table1[Group] )
            )
        RETURN
            IF (
                SELECTEDVALUE ( TableName[ColumnName] ) = "00001 P",
                CurrentValue - Value40R,
                CurrentValue
            )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 29 Jul 2022 13:15:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2669587#M79547</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-29T13:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672018#M79708</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry for my late reply. The sum value is now correct, it subtracts the value correctly and displays the right amount, but the displayed value for 0001 P is not changed.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 07:33:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672018#M79708</guid>
      <dc:creator>L_K_</dc:creator>
      <dc:date>2022-08-01T07:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672114#M79716</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394753" data-lia-user-login="L_K_" class="lia-mention lia-mention-user"&gt;L_K_&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Would you please share a screanshot of the results you are getting as well as the code you have used?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:04:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672114#M79716</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-01T08:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672181#M79718</link>
      <description>&lt;P&gt;TEST3 =&lt;/P&gt;&lt;P&gt;SUMX (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CROSSJOIN (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUES ( 'Date'[Year] ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUMMARIZE (Table1,Table1[Group],Table1[Name] )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR CurrentValue =&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE(SUM(Table2[Value]),'Date'[Month]=SELECTEDVALUE('Date'[Month]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VAR Value40R =&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM ( Table2[Value] ),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table1[Name] = "00040 R",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ALL ( Table1[Group] ) ,'Date'[Month]=SELECTEDVALUE('Date'[Month])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RETURN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SELECTEDVALUE ( Table1[Name] ) = "00001 P",&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CurrentValue - Value40R,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CurrentValue&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:26:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672181#M79718</guid>
      <dc:creator>L_K_</dc:creator>
      <dc:date>2022-08-01T08:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672256#M79721</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394753" data-lia-user-login="L_K_" class="lia-mention lia-mention-user"&gt;L_K_&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;please try measure&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;SELECTEDVALUE ( Table1[Name] )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;please let me know what you get&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:47:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672256#M79721</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-01T08:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672264#M79722</link>
      <description>&lt;P&gt;The names (text) inside the group, like: 00002 O, 00003 D, 00040 R, 0001 P...&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:51:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672264#M79722</guid>
      <dc:creator>L_K_</dc:creator>
      <dc:date>2022-08-01T08:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672284#M79727</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="394753" data-lia-user-login="L_K_" class="lia-mention lia-mention-user"&gt;L_K_&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Ok please try&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;TEST3 =
SUMX (
    CROSSJOIN (
        VALUES ( 'Date'[Year] ),
        SUMMARIZE ( Table1, Table1[Group], Table1[Name] )
    ),
    CALCULATE (
        VAR CurrentValue =
            CALCULATE (
                SUM ( Table2[Value] ),
                'Date'[Month] = SELECTEDVALUE ( 'Date'[Month] )
            )
        VAR Value40R =
            CALCULATE (
                SUM ( Table2[Value] ),
                Table1[Name] = "00040 R",
                ALL ( Table1 ),
                'Date'[Month] = SELECTEDVALUE ( 'Date'[Month] )
            )
        RETURN
            IF (
                SELECTEDVALUE ( Table1[Name] ) = "00001 P",
                CurrentValue - Value40R,
                CurrentValue
            )
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 01 Aug 2022 08:57:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672284#M79727</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-08-01T08:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dax measure to subtract one value from another without changing other values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672323#M79734</link>
      <description>&lt;P&gt;This works perfectly!&lt;/P&gt;&lt;P&gt;Thank you so so so much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp; for your time and help!&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2022 09:04:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-measure-to-subtract-one-value-from-another-without-changing/m-p/2672323#M79734</guid>
      <dc:creator>L_K_</dc:creator>
      <dc:date>2022-08-01T09:04:56Z</dc:date>
    </item>
  </channel>
</rss>

