<?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: summerize differently depending on filter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099737#M108917</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So this didn't work?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/wrong-total/m-p/3099511#M108904" target="_blank"&gt;https://community.powerbi.com/t5/DAX-Commands-and-Tips/wrong-total/m-p/3099511#M108904&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 26 Feb 2023 08:42:09 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2023-02-26T08:42:09Z</dc:date>
    <item>
      <title>summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099735#M108916</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;because my "Lost_amount"&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;does not summarize the total, I have created "Lost_amount3"&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;But depending on how many customers (=CYname) it summarizes differently.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Correct for one customer:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Something else instead of Total for more customers. (It is not even the average. No clue what it is summarizing)&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Some ideas how this can be fix?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 08:31:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099735#M108916</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T08:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099737#M108917</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So this didn't work?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/wrong-total/m-p/3099511#M108904" target="_blank"&gt;https://community.powerbi.com/t5/DAX-Commands-and-Tips/wrong-total/m-p/3099511#M108904&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 08:42:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099737#M108917</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T08:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099739#M108918</link>
      <description>&lt;P&gt;Hi, thanks for your help again &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;I thought it works, but then I continued all night and now it is empty again. The columns did not change, the relationships did not change. I can't immagine why your code does not work not. So build up on your idea I used the summary table, which is now called "Lost_amount3", but this summarizes strange&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 10:04:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099739#M108918</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T10:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099788#M108921</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;This way should work&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Lost_new =
SUMX (
    SUMMARIZE (
        '6_Lost',
        '6_Lost'[StartDate],
        '6_Lost'[EndDate],
        '6_Lost'[Product],
        '6_Lost'[CYname],
        'Date'[Jahr],
        'Date'[Monat]
    ),
    [Last_Sales]
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 26 Feb 2023 10:04:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099788#M108921</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T10:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099793#M108922</link>
      <description>&lt;P&gt;This is empty too. Or do I have to add this code in front of something?&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 10:09:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099793#M108922</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T10:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099797#M108925</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Please share a screenshot along with the dax code you wrote.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 10:15:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099797#M108925</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T10:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099810#M108926</link>
      <description>&lt;P&gt;These are all codes I used in the visual&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;&lt;P&gt;&lt;img /&gt;&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;&lt;img /&gt;&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;</description>
      <pubDate>Sun, 26 Feb 2023 10:28:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099810#M108926</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T10:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099811#M108927</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Try to have Jahr and Monat as real columns in the Date table and use them in the table visual and in the SUMMARIZE&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 10:43:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099811#M108927</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T10:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099819#M108929</link>
      <description>&lt;P&gt;do you mean like that?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I did change it in the visual too, but Lost_new is still&amp;nbsp;empty&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 10:58:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099819#M108929</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T10:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099851#M108930</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Would you please double check that these are the same columns that are used in the table visual one by one?&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 11:48:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099851#M108930</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T11:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099875#M108931</link>
      <description>&lt;P&gt;I double and triple checked and also created the visual new. But still empty&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;where&amp;nbsp;&lt;BR /&gt;Jahr =&lt;SPAN&gt;&amp;nbsp;YEAR&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;('Date'[Date])&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Monat = &lt;/SPAN&gt;&lt;SPAN&gt;MONTH&lt;/SPAN&gt;&lt;SPAN&gt;('Date'[Date])&lt;BR /&gt;&lt;BR /&gt;The code for "Lost_amount3"&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Lost_amount3 =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;__SummaryTable&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;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Date'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;[Monat]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;"@value2"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;[Lost_amount]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;__SummaryTable&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;[@value2]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;seems to summarize correct for one customer&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it somehow possible to modify this?&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 26 Feb 2023 12:31:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099875#M108931</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T12:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099887#M108932</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which table / column represents the costomer?&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 13:15:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099887#M108932</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T13:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099906#M108936</link>
      <description>&lt;P&gt;The customers are coming from a table, that selects column from table&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;relationships are:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 13:50:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099906#M108936</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T13:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099914#M108937</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;P&gt;Lost_amount3 =&lt;BR /&gt;SUMX (&lt;BR /&gt;CROSSJOIN ( VALUES ( 'Date'[Monta] ), VALUES ( 'Lost_prep'[Cliento] ) ),&lt;BR /&gt;[Lost_amount]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 14:04:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099914#M108937</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T14:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099922#M108939</link>
      <description>&lt;P&gt;Hmmm, now it summarizes, but it has the wrong amount. Lost_amount should be the same as Lost_amount3&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 14:27:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099922#M108939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T14:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099933#M108942</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Lost_amount3 =
SUMX (
    GENERATE (
        SUMMARIZE ( 'Date', 'Date'[Jahr], 'Date'[Monta] ),
        CALCULATETABLE ( VALUES ( 'Lost_prep'[Cliento] ) )
    ),
    [Lost_amount]
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 26 Feb 2023 14:49:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099933#M108942</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T14:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099946#M108945</link>
      <description>&lt;P&gt;It summarized too much. So, I thought it would be better with a filter&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;but even this does not change something. The total still not a summary&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Is this a relationship issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 15:10:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099946#M108945</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T15:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099974#M108946</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure to be honest. Please try&lt;/P&gt;
&lt;P&gt;Lost_amount3 =&lt;BR /&gt;SUMX (&lt;BR /&gt;GENERATE (&lt;BR /&gt;SUMMARIZE ( 'Date', 'Date'[Jahr], 'Date'[Monta] ),&lt;BR /&gt;CALCULATETABLE ( VALUES ( 'Lost_prep'[Cliento] ) )&lt;BR /&gt;),&lt;BR /&gt;CALCULATE (&lt;BR /&gt;[Lost_amount],&lt;BR /&gt;CROSSFILTER ( 'Date'[Date], '2_Abfrage_Orderline'[Date], BOTH )&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 15:59:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099974#M108946</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T15:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099990#M108947</link>
      <description>&lt;P&gt;Lost_amount3 does not match with Lost_amount. DAX seems to be very complicated&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 16:16:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3099990#M108947</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-26T16:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: summerize differently depending on filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3100004#M108949</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;It is better to connect and have a direct look at the data. Let me know if this is possible perhaps tomorrow noon Dubai time.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Feb 2023 16:45:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/summerize-differently-depending-on-filter/m-p/3100004#M108949</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-02-26T16:45:44Z</dc:date>
    </item>
  </channel>
</rss>

