<?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: Filtered DateDIFF in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/878304#M7445</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179425" data-lia-user-login="pawelj795" class="lia-mention lia-mention-user"&gt;pawelj795&lt;/a&gt;&amp;nbsp;not sure what is the index value&amp;nbsp; field in your dataset but you should create a calculated column for aging if you want to use that field as legend.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Dec 2019 04:13:03 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-12-18T04:13:03Z</dc:date>
    <item>
      <title>Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877458#M7407</link>
      <description>&lt;P&gt;Hi.&lt;BR /&gt;I want to calculate measure which show a date difference between today and last transaction on particular item.&lt;BR /&gt;But to this calculation I want to take only specified type of transactions &lt;STRONG&gt;(TransType = 0 or 9)&lt;/STRONG&gt; -&amp;gt;it's determine on every row.&lt;BR /&gt;&lt;BR /&gt;So my question is, how to filter datediff function?&lt;BR /&gt;&lt;BR /&gt;I only figured out some part of this measure:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;DATEDIFF(TODAY();MAX(Invent_Trans[Date_Physical]);DAY)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;I thought that use VAR might be helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 11:03:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877458#M7407</guid>
      <dc:creator>pawelj795</dc:creator>
      <dc:date>2019-12-17T11:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877479#M7409</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179425" data-lia-user-login="pawelj795" class="lia-mention lia-mention-user"&gt;pawelj795&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try a measure&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=DATEDIFF(
TODAY();
calculate(MAX(Invent_Trans[Date_Physical]);OR(Invent_Trans[TransType] = 0; Invent_Trans[TransType]9));DAY
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;I&gt;&lt;FONT color="#ababab"&gt;do not hesitate to give a kudo to useful posts and mark solutions as solution&lt;/FONT&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 11:23:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877479#M7409</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2019-12-17T11:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877481#M7410</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179425" data-lia-user-login="pawelj795" class="lia-mention lia-mention-user"&gt;pawelj795&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;if you want a column use this one&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Column = IF(Invent_Trans[TransType] IN {0,9},DATEDIFF(Invent_Trans[Date_physical],TODAY(),DAY))&lt;/LI-CODE&gt;&lt;P&gt;in case you are looking for measure&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure = IF(MAX(Invent_Trans[TransType]) IN {0,9},DATEDIFF(MAX(Invent_Trans[Date_physical]),TODAY(),DAY))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 11:25:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877481#M7410</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-17T11:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877488#M7411</link>
      <description>&lt;P&gt;Just wrap it in CALCULATE and apply an appropriate filter, for example:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=
CALCULATE (
    DATEDIFF ( TODAY (); MAX ( Invent_Trans[Date_Physical] ); DAY );
    TREATAS ( { 0; 9 }; Invent_Trans[TransType] )
)&lt;/LI-CODE&gt;&lt;P&gt;or you can use&amp;nbsp; this syntax:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;=
CALCULATE (
    DATEDIFF ( TODAY (); MAX ( Invent_Trans[Date_Physical] ); DAY );
    FILTER (
        VALUES ( Invent_Trans[TransType] );
        Invent_Trans[TransType] = 0
            || Invent_Trans[TransType] = 9
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 17 Dec 2019 11:28:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877488#M7411</guid>
      <dc:creator>hohlick</dc:creator>
      <dc:date>2019-12-17T11:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877529#M7413</link>
      <description>&lt;P&gt;Thanks guys, thats works perfectly !&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I want to also add &lt;STRONG&gt;aging &lt;/STRONG&gt;to this measure.&lt;BR /&gt;&lt;BR /&gt;I tried the simpliest way to do this by use IF function, but it's not working correctly.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;LI-SPOILER&gt;&lt;DIV&gt;&lt;SPAN&gt;Aging = IF(WH_Invent_Trans[Grouping]&amp;lt;-120; " 120+";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(WH_Invent_Trans[Grouping] &amp;lt;-60 &amp;amp;&amp;amp; WH_Invent_Trans[Grouping]&amp;gt;=-120; " 61-120";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(WH_Invent_Trans[Grouping]&amp;lt;-30 &amp;amp;&amp;amp; WH_Invent_Trans[Grouping]&amp;gt;=-60; " 31-60";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(WH_Invent_Trans[Grouping] &amp;lt;-15 &amp;amp;&amp;amp; WH_Invent_Trans[Grouping]&amp;gt;=-30; " 16-30";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(WH_Invent_Trans[Grouping] &amp;lt; 0 &amp;amp;&amp;amp; WH_Invent_Trans[Grouping]&amp;gt;=-15; "0-15";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;BLANK()))))) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI-SPOILER&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;Where is my mistake?&lt;BR /&gt;The other thing, should I use measure or column if I used measure to calculate datedifference.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I also must add one filter to&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp; measure.&lt;BR /&gt;The transactions must have WH_Invent_Trans[QTY]&amp;lt;&amp;gt;BLANK()&lt;BR /&gt;&lt;BR /&gt;How to resolve this?&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 17 Dec 2019 12:09:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877529#M7413</guid>
      <dc:creator>pawelj795</dc:creator>
      <dc:date>2019-12-17T12:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877552#M7414</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179425" data-lia-user-login="pawelj795" class="lia-mention lia-mention-user"&gt;pawelj795&lt;/a&gt;&amp;nbsp;use switch statement for grouping&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure 2 = SWITCH(TRUE()
                        ,[Measure]&amp;lt;-120,"120"
                        ,[Measure]&amp;lt;-60 &amp;amp;&amp;amp; [Measure]&amp;gt;=-120,"61-120"
                        ,BLANK())&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Add remaining consitions in switch function&lt;/P&gt;&lt;P&gt;In order to include qty &amp;lt;&amp;gt; blank&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(AND(MAX(Invent_Trans[TransType]) IN {0,9},MAX(Invent_Trans[QTY])&amp;lt;&amp;gt;BLANK()),DATEDIFF(MAX(Invent_Trans[Date_physical]),TODAY(),DAY))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 12:22:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877552#M7414</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-17T12:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877584#M7417</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Something is wrong with Aging&amp;gt;&lt;BR /&gt;It shows only blank values.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Aging = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SWITCH(TRUE();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;lt;-120;" 120+";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;lt;-60 &amp;amp;&amp;amp; [Grouping]&amp;gt;=-120;" 61-120";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;lt;-30 &amp;amp;&amp;amp; [Grouping]&amp;gt;=-60;" 31-60";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;lt;-15 &amp;amp;&amp;amp; [Grouping]&amp;gt;=-30;" 16-30";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;lt; 0 &amp;amp;&amp;amp; [Grouping]&amp;gt;=-15;"0-15";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;BLANK())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Grouping = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(AND(MAX(WH_Invent_Trans[TransType]) IN {0;9}; MAX(WH_Invent_Trans[QTY])&amp;lt;&amp;gt;BLANK()); DATEDIFF(MAX(WH_Invent_Trans[Date Physical]);TODAY();DAY))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;/LI-SPOILER&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 12:46:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877584#M7417</guid>
      <dc:creator>pawelj795</dc:creator>
      <dc:date>2019-12-17T12:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877591#M7419</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179425" data-lia-user-login="pawelj795" class="lia-mention lia-mention-user"&gt;pawelj795&lt;/a&gt;&amp;nbsp;If you are using today() as second argument in datediff function then you must be getting positive values. please check what is the output of datediff measure. Is it positive number or negative and then accordingly modify the switch function conditions&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 12:50:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877591#M7419</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-17T12:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877605#M7420</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Haha, so stupid mistake.&lt;BR /&gt;I didn't notice that I had only positive values&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;.&lt;BR /&gt;&lt;BR /&gt;The last thing about this topic,&lt;BR /&gt;How to visualize this measure?&lt;BR /&gt;&lt;BR /&gt;I want to make Pie chart with &lt;U&gt;Aging&lt;/U&gt; as &lt;STRONG&gt;Legend&lt;/STRONG&gt; and &lt;U&gt;current index values&lt;/U&gt; as &lt;STRONG&gt;Values&lt;/STRONG&gt; but because Agins is a measure, that means it can't be use this way.&lt;BR /&gt;&lt;BR /&gt;Do you have any creative idea to show my results?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 13:04:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877605#M7420</guid>
      <dc:creator>pawelj795</dc:creator>
      <dc:date>2019-12-17T13:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877686#M7425</link>
      <description>&lt;P&gt;Maybe should I use column instead of measures for whole calculation?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 14:26:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/877686#M7425</guid>
      <dc:creator>pawelj795</dc:creator>
      <dc:date>2019-12-17T14:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/878304#M7445</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="179425" data-lia-user-login="pawelj795" class="lia-mention lia-mention-user"&gt;pawelj795&lt;/a&gt;&amp;nbsp;not sure what is the index value&amp;nbsp; field in your dataset but you should create a calculated column for aging if you want to use that field as legend.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 04:13:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/878304#M7445</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-12-18T04:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Filtered DateDIFF</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/878837#M7456</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Calculated Column isn't solution. It filtered incorrectly my entire report.&lt;BR /&gt;&lt;BR /&gt;I thought that in pie chart i could use one measure for every part of Aging.&lt;BR /&gt;I mean, it would be 5 consecutive measures:&lt;BR /&gt;1.Aging (0,15)&lt;BR /&gt;2.Aging (16,30)&lt;/P&gt;&lt;P&gt;3.Aging(31-60)&lt;/P&gt;&lt;P&gt;4. Aging(61-120)&lt;BR /&gt;5.Aging(120+)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;My question is how to combine 3 below measures into one.&lt;/P&gt;&lt;LI-SPOILER&gt;&lt;DIV&gt;&lt;STRONG&gt;SWITCH(TRUE();&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;gt;120;" 120+";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;gt;60 &amp;amp;&amp;amp; [Grouping]&amp;lt;=120;" 61-120";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;gt;30 &amp;amp;&amp;amp; [Grouping]&amp;lt;=60;" 31-60";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;gt;15 &amp;amp;&amp;amp; [Grouping]&amp;lt;=30;" 16-30";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[Grouping]&amp;gt; 0 &amp;amp;&amp;amp; [Grouping]&amp;lt;=15;"0-15";&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;BLANK())&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;STRONG&gt;IF(&lt;/STRONG&gt;AND(MAX(WH_Invent_Trans[TransType]) IN {0;9}; MAX(WH_Invent_Trans[QTY])&amp;lt;&amp;gt;BLANK()); DATEDIFF(MAX(WH_Invent_Trans[Date Physical]);TODAY();DAY))&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;STRONG&gt;IF&lt;/STRONG&gt;( MAX(DimDates[Date])&amp;lt;=TODAY()-1;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUM(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;WH_Invent_Trans[Inventory Value EUR]);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DATESYTD(DimDates[Date]));&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;BLANK())&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI-SPOILER&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2019 13:45:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtered-DateDIFF/m-p/878837#M7456</guid>
      <dc:creator>pawelj795</dc:creator>
      <dc:date>2019-12-18T13:45:59Z</dc:date>
    </item>
  </channel>
</rss>

