<?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 help ignore filter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680594#M34473</link>
    <description>&lt;P&gt;Hmm, no is the same result. But i have tried, and now i get the correct answar but the result is in the wrong row?? the result for Partout must be in the row partout&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>Mon, 22 Feb 2021 10:30:26 GMT</pubDate>
    <dc:creator>andreasalleslev</dc:creator>
    <dc:date>2021-02-22T10:30:26Z</dc:date>
    <item>
      <title>DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680256#M34461</link>
      <description>&lt;P&gt;Hallo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope someone can help me. I havde this measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;venuemanager = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var endags = CALCULATE(SUM('Digital produkt status'[Antal]), FILTER('Alle produkter', 'Alle produkter'[Type]="endags"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;var partout = CALCULATE(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUM('Digital produkt status'[Antal]), ALL('Alle produkter'[Dag]), FILTER('Alle produkter', 'Alle produkter'[Type]="partout")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;return endags + partout&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;and it return:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i want this output: If type = "Partout" then ignore the day filter called "Dag" but it dont work&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards Andreas Alleslev&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 22 Feb 2021 08:47:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680256#M34461</guid>
      <dc:creator>andreasalleslev</dc:creator>
      <dc:date>2021-02-22T08:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680298#M34462</link>
      <description>&lt;P&gt;does "dag" come from your calendar table, maybe you need to use filter(all(caledar, ...&amp;nbsp; in your calculate.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;other wise try &lt;SPAN&gt;FILTER(allexcept('Alle produkter','Alle produkter'[Type]), 'Alle produkter'[Type]="partout")&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 09:02:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680298#M34462</guid>
      <dc:creator>rfigtree</dc:creator>
      <dc:date>2021-02-22T09:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680328#M34463</link>
      <description>&lt;P&gt;Nope, is come from the product table. the product table have af "Type" and af "Dag" collum. and when the "type" is "Partout" then ignore the "Dag" collum.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 09:02:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680328#M34463</guid>
      <dc:creator>andreasalleslev</dc:creator>
      <dc:date>2021-02-22T09:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680337#M34464</link>
      <description>&lt;P&gt;&lt;SPAN&gt;other wise try&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;FILTER(allexcept('Alle produkter','Alle produkter'[Type]), 'Alle produkter'[Type]="partout")&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 09:04:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680337#M34464</guid>
      <dc:creator>rfigtree</dc:creator>
      <dc:date>2021-02-22T09:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680379#M34465</link>
      <description>&lt;P&gt;Please try&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR endags =
CALCULATE (
    SUM ( 'Digital produkt status'[Antal] ),
    FILTER (
        'Alle produkter',
        'Alle produkter'[Type] = "endags"
    )
)
VAR partout =
CALCULATE (
    SUM ( 'Digital produkt status'[Antal] ),
    'Alle produkter'[Type] = "partout"
)

RETURN endags + partout&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 09:13:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680379#M34465</guid>
      <dc:creator>jameszhang0805</dc:creator>
      <dc:date>2021-02-22T09:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680384#M34466</link>
      <description>&lt;P&gt;Hmm, nope, is dosent work. it fails:&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>Mon, 22 Feb 2021 09:15:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680384#M34466</guid>
      <dc:creator>andreasalleslev</dc:creator>
      <dc:date>2021-02-22T09:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680440#M34469</link>
      <description>&lt;P&gt;thank for your answar. it gives the same result&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>Mon, 22 Feb 2021 09:33:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680440#M34469</guid>
      <dc:creator>andreasalleslev</dc:creator>
      <dc:date>2021-02-22T09:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680498#M34472</link>
      <description>&lt;LI-CODE lang="markup"&gt;VAR endags =
CALCULATE (
    SUM ( 'Digital produkt status'[Antal] ),
    FILTER (
        'Alle produkter',
        'Alle produkter'[Type] = "endags"
    )
)
VAR partout =
CALCULATE (
    SUM ( 'Digital produkt status'[Antal] ),
    'Alle produkter'[Dag] = "partout"
)

RETURN endags + partout&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 22 Feb 2021 09:53:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680498#M34472</guid>
      <dc:creator>jameszhang0805</dc:creator>
      <dc:date>2021-02-22T09:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: DAX measure help ignore filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680594#M34473</link>
      <description>&lt;P&gt;Hmm, no is the same result. But i have tried, and now i get the correct answar but the result is in the wrong row?? the result for Partout must be in the row partout&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>Mon, 22 Feb 2021 10:30:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-measure-help-ignore-filter/m-p/1680594#M34473</guid>
      <dc:creator>andreasalleslev</dc:creator>
      <dc:date>2021-02-22T10:30:26Z</dc:date>
    </item>
  </channel>
</rss>

