<?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: Logical Operators on Date Fields ( &amp;quot;&amp;lt;=&amp;quot; works but &amp;quot;&amp;lt;&amp;quot; doesn't ) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218767#M19750</link>
    <description>Using a measure under FILTER is rarely a good idea (unless you know exactly how context transition works). Such a measure will do a context transition and all values that are less than that date will be excluded from the calculation (which is what you've experienced). What's even more dangerous, you're filtering the EXPANDED TABLE, not the table itself. If you don't have a good understanding of the theory of expanded tables... you're out of luck a bit. Sorry.&lt;BR /&gt;&lt;BR /&gt;I'll try to show you the correct formula in a bit...&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
    <pubDate>Mon, 13 Jul 2020 14:51:56 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-07-13T14:51:56Z</dc:date>
    <item>
      <title>Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218652#M19738</link>
      <description>&lt;P&gt;Hello and happy monday folks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a bit of a head-scratcher regarding logical operators and date fields in DAX - if you hadn't guessed from the thread title&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The crux of it is that when I perform a calculation comparing dates using Less Than ("&amp;lt;") returns a (blank) while using Less Than Or Equal To ("&amp;lt;=") returns a value. I have checked formatting, wrapped my min/max date measures in DATEVALUE() to rule out Text Conversion mixups.....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Model (Really Simple!)&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The DAX:&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Opening WIP Value = 
VAR OLOpeningWIP_Open =
    SUMX(
        FILTER (
            Orderlines,
            Orderlines[Created Date] &amp;lt; [Min Selected Date]
                &amp;amp;&amp;amp; Orderlines[Orderline Status] IN { "Confirmed", "Delayed", "Processing" }
        ),
        Orderlines[Gross Profit]
    )
VAR OLOpeningWIP_Completed =
    SUMX (
        FILTER (
            Orderlines,
            Orderlines[Created Date] &amp;lt; [Min Selected Date]
                &amp;amp;&amp;amp; Orderlines[Completed Date] &amp;gt;= [Min Selected Date]
                &amp;amp;&amp;amp; Orderlines[Orderline Status] IN { "Completed" }
        ),
        Orderlines[Gross Profit]
    )
VAR OLOpeningWIP_Cancelled =
    SUMX (
        FILTER (
            Orderlines,
            Orderlines[Created Date] &amp;lt; [Min Selected Date]
                &amp;amp;&amp;amp; Orderlines[Status Date] &amp;gt;= [Min Selected Date]
                &amp;amp;&amp;amp; Orderlines[Orderline Status] IN { "Cancelled" }
        ),
        Orderlines[Gross Profit]
    )
RETURN
    OLOpeningWIP_Open + OLOpeningWIP_Completed + OLOpeningWIP_Cancelled&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Max Selected Date = DATEVALUE( MAX( 'Date'[Date] ) )&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Min Selected Date = DATEVALUE( MIN( 'Date'[Date] ) )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Result:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;As soon as I use Orderlines[Created Date] &lt;U&gt;&lt;STRONG&gt;&amp;lt;&lt;/STRONG&gt;&lt;/U&gt; [Min Selected Date] Dax and I have a falling out and it results in (Blank) for my calculation. Make it less than or equal to the&amp;nbsp;[Min Selected Date] and we are friends again even if the value returned is incorrect&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_rolling_eyes:"&gt;🙄&lt;/span&gt;. Any help would be greatly appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 14:17:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218652#M19738</guid>
      <dc:creator>Chthonian</dc:creator>
      <dc:date>2020-07-13T14:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218685#M19740</link>
      <description>&amp;lt;= is an OR condition so if a value is not less than something but is equal to something then some result will be returned.</description>
      <pubDate>Mon, 13 Jul 2020 14:23:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218685#M19740</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2020-07-13T14:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218686#M19741</link>
      <description>&lt;P&gt;can you use OR operator?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(Orderlines[Created Date] &amp;lt; [Min Selected Date]) || (Orderlines[Created Date] = [Min Selected Date])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 14:23:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218686#M19741</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-13T14:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218728#M19743</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="236628" data-lia-user-login="AntrikshSharma" class="lia-mention lia-mention-user"&gt;AntrikshSharma&lt;/a&gt;&amp;nbsp;- the idea here is that I use a pure and simple "Less Than" as i need to exclude any records where the created date equals [Min Selected Date]. The date definitely has dates that are before the [Min Selected Date].&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 14:35:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218728#M19743</guid>
      <dc:creator>Chthonian</dc:creator>
      <dc:date>2020-07-13T14:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218732#M19744</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;- the OR statement again is not something I need, to get the correct values calculated I need to use less than the&amp;nbsp;[Min Selected Date].&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a slicer on my report which Slices by "Month &amp;amp; Year" i.e. Jan 2020&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 14:37:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218732#M19744</guid>
      <dc:creator>Chthonian</dc:creator>
      <dc:date>2020-07-13T14:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218757#M19747</link>
      <description>&lt;P&gt;Inside FILTER can you please replace&amp;nbsp;&lt;SPAN&gt;Orderlines with ALLSELECTED (&amp;nbsp;Orderlines ) and share the findings.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 14:48:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218757#M19747</guid>
      <dc:creator>AntrikshSharma</dc:creator>
      <dc:date>2020-07-13T14:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218758#M19748</link>
      <description>&lt;P&gt;sorry about that I misread the quesiton.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Got it now. you are tyring to exclude data thats not equal to selected time period. Since its driving from the slicer, I would certainly try to use HASONEVALUE of the slicer fields, this has solved my issues in the past whe comparison conditions are used.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 14:48:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218758#M19748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-13T14:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218767#M19750</link>
      <description>Using a measure under FILTER is rarely a good idea (unless you know exactly how context transition works). Such a measure will do a context transition and all values that are less than that date will be excluded from the calculation (which is what you've experienced). What's even more dangerous, you're filtering the EXPANDED TABLE, not the table itself. If you don't have a good understanding of the theory of expanded tables... you're out of luck a bit. Sorry.&lt;BR /&gt;&lt;BR /&gt;I'll try to show you the correct formula in a bit...&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Mon, 13 Jul 2020 14:51:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218767#M19750</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-13T14:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218781#M19752</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;// Assumption is that [Date] is NOT connected to the fact table.
// If it is, you'll have to add REMOVEFILTERS( Date ) to the
// whole expression after the first line that grabs the min
// selected date in order to be able to perform the calculations
// correctly.

Opening WIP Value =
var __minSelectedDate = [Min Selected Date]
VAR OLOpeningWIP_Open =
    SUMX(
        FILTER(
            Orderlines,
            Orderlines[Created Date] &amp;lt; __minSelectedDate
            &amp;amp;&amp;amp;
            Orderlines[Orderline Status] IN {
                "Confirmed",
                "Delayed",
                "Processing"
            }
        ),
        Orderlines[Gross Profit]
    )
VAR OLOpeningWIP_Completed =
    SUMX(
        FILTER(
            Orderlines,
            Orderlines[Created Date] &amp;lt; __minSelectedDate
            &amp;amp;&amp;amp;
            Orderlines[Completed Date] &amp;gt;= __minSelectedDate
            &amp;amp;&amp;amp;
            Orderlines[Orderline Status] = "Completed"
        ),
        Orderlines[Gross Profit]
    )
VAR OLOpeningWIP_Cancelled =
    SUMX(
        FILTER(
            Orderlines,
            Orderlines[Created Date] &amp;lt; __minSelectedDate
            &amp;amp;&amp;amp;
            Orderlines[Status Date] &amp;gt;= __minSelectedDate
            &amp;amp;&amp;amp;
            Orderlines[Orderline Status] = "Cancelled"
        ),
        Orderlines[Gross Profit]
    )
RETURN
    OLOpeningWIP_Open
    	+ OLOpeningWIP_Completed
    	+ OLOpeningWIP_Cancelled&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;// This version should be used if you have
// a connection from Date to the fact table.

Opening WIP Value =
var __minSelectedDate = [Min Selected Date]
return
CALCULATE(
	VAR OLOpeningWIP_Open =
	    SUMX(
	        FILTER(
	            Orderlines,
	            Orderlines[Created Date] &amp;lt; __minSelectedDate
	            &amp;amp;&amp;amp;
	            Orderlines[Orderline Status] IN {
	                "Confirmed",
	                "Delayed",
	                "Processing"
	            }
	        ),
	        Orderlines[Gross Profit]
	    )
	VAR OLOpeningWIP_Completed =
	    SUMX(
	        FILTER(
	            Orderlines,
	            Orderlines[Created Date] &amp;lt; __minSelectedDate
	            &amp;amp;&amp;amp;
	            Orderlines[Completed Date] &amp;gt;= __minSelectedDate
	            &amp;amp;&amp;amp;
	            Orderlines[Orderline Status] = "Completed"
	        ),
	        Orderlines[Gross Profit]
	    )
	VAR OLOpeningWIP_Cancelled =
	    SUMX(
	        FILTER(
	            Orderlines,
	            Orderlines[Created Date] &amp;lt; __minSelectedDate
	            &amp;amp;&amp;amp;
	            Orderlines[Status Date] &amp;gt;= __minSelectedDate
	            &amp;amp;&amp;amp;
	            Orderlines[Orderline Status] = "Cancelled"
	        ),
	        Orderlines[Gross Profit]
	    )
	RETURN
	    OLOpeningWIP_Open
	    	+ OLOpeningWIP_Completed
	    	+ OLOpeningWIP_Cancelled,
	    	
	ALL( 'Date' )
	 
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And, of course, you don't need to wrap anything within DATEVALUE. This, as I mentioned before, wasn't the problem. The problem was most likely in your misunderstading of how context transition works and what an expanded table does.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;D&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 15:03:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218781#M19752</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-13T15:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218808#M19754</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/a&gt;&amp;nbsp;, I had a sinking feeling that Context Transition may be my issue, and being a topic I have not really looked at yet (something I have just started in my studies) I will openly admit that I do not understand it yet&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;. So I guess I do have some reading to get done and knowledge to absorb.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate the pointer, and if you get a chance I will really appreciate the formula help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 15:16:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218808#M19754</guid>
      <dc:creator>Chthonian</dc:creator>
      <dc:date>2020-07-13T15:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218819#M19756</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;my friend, you are a legend! Thanks that worked perfectly.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And you are right I need to get my ignorance on the topic of context transition under wraps&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":relieved_face:"&gt;😌&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&amp;amp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="236628" data-lia-user-login="AntrikshSharma" class="lia-mention lia-mention-user"&gt;AntrikshSharma&lt;/a&gt;&amp;nbsp;thanks for million for your help too.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 15:22:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218819#M19756</guid>
      <dc:creator>Chthonian</dc:creator>
      <dc:date>2020-07-13T15:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218859#M19759</link>
      <description>I'm not a legend, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="182322" data-lia-user-login="Chthonian" class="lia-mention lia-mention-user"&gt;Chthonian&lt;/a&gt;. I'm just a reader of "The Definitive Guide To DAX" by the real LEGENDS - Marco Russo and Alberto Ferrari &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; And a faithful one. I've read this book already 5 times from cover to cover.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Mon, 13 Jul 2020 15:36:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218859#M19759</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-13T15:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218898#M19760</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;I just got my hands on that little gem, along with "Analyzing Data with MS PowerBI, Power Pivot for Excel" I am working through the evaluation context chapter, literally started it last night. I do however thank you for your help!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 15:50:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218898#M19760</guid>
      <dc:creator>Chthonian</dc:creator>
      <dc:date>2020-07-13T15:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Logical Operators on Date Fields ( "&lt;=" works but "&lt;" doesn't )</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218915#M19763</link>
      <description>So then... you're on the right track. The only one real right track &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Good luck!&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Mon, 13 Jul 2020 15:55:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Logical-Operators-on-Date-Fields-quot-lt-quot-works-but-quot-lt/m-p/1218915#M19763</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-13T15:55:14Z</dc:date>
    </item>
  </channel>
</rss>

