<?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: Filter with multiple conditions plus OR in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026046#M103191</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;BR /&gt;You are welcome!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;BR /&gt;&lt;BR /&gt;Nathaniel&lt;/P&gt;</description>
    <pubDate>Tue, 17 Jan 2023 14:23:51 GMT</pubDate>
    <dc:creator>Nathaniel_C</dc:creator>
    <dc:date>2023-01-17T14:23:51Z</dc:date>
    <item>
      <title>Filter with multiple conditions plus OR</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3024131#M103038</link>
      <description>&lt;P&gt;I'm creating a report that needs to list all units in a table that have a scanned in date of either:&lt;/P&gt;&lt;P&gt;&amp;nbsp;today with a time &amp;lt;+ 11:30 am OR yesterday with a time &amp;gt;= 11:30 am.&amp;nbsp; Currently the date and time are separate columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new to Power BI and am guessing I need to use DAX but have not hit upon the correct syntax combination.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 21:01:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3024131#M103038</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-16T21:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Filter with multiple conditions plus OR</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3024166#M103041</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Include = IF(AND(Max(FTable[Date])=TODAY(),MAX(FTable[Time])&amp;lt;= TIMEVALUE("11:30 AM")) || AND(Max(FTable[Date])=TODAY()-1,MAX(FTable[Time])&amp;gt;= TIMEVALUE("11:30 AM")),1,0)&lt;/LI-CODE&gt;
&lt;P&gt;Please try this.&lt;BR /&gt;&lt;BR /&gt;Let me know if you have any questions.&lt;BR /&gt;&lt;BR /&gt;If this solves your issues, please mark it as the &lt;STRONG&gt;solution, &lt;/STRONG&gt;so that others can find it easily. &lt;STRONG&gt;Kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 21:39:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3024166#M103041</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2023-01-16T21:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Filter with multiple conditions plus OR</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3024174#M103042</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;BR /&gt;Original table:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Select the table, and drop the measure into the filter pane and set the filter to 1:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Let me know if you have any questions.&lt;BR /&gt;&lt;BR /&gt;If this solves your issues, please mark it as the &lt;STRONG&gt;solution, &lt;/STRONG&gt;so that others can find it easily. &lt;STRONG&gt;Kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jan 2023 21:44:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3024174#M103042</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2023-01-16T21:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Filter with multiple conditions plus OR</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026030#M103190</link>
      <description>&lt;P&gt;Yes! That works - thank you!&amp;nbsp; Is there a way to hide that column from the report?&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 14:28:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026030#M103190</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-17T14:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Filter with multiple conditions plus OR</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026046#M103191</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;BR /&gt;You are welcome!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good luck!&lt;BR /&gt;&lt;BR /&gt;Nathaniel&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 14:23:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026046#M103191</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2023-01-17T14:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: Filter with multiple conditions plus OR</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026229#M103200</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;Which column?&lt;BR /&gt;&lt;BR /&gt;Let me know if you have any questions.&lt;BR /&gt;&lt;BR /&gt;If this solves your issues, please mark it as the &lt;STRONG&gt;solution, &lt;/STRONG&gt;so that others can find it easily. &lt;STRONG&gt;Kudos &lt;/STRONG&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;are nice too.&lt;BR /&gt;Nathaniel&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 15:17:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026229#M103200</guid>
      <dc:creator>Nathaniel_C</dc:creator>
      <dc:date>2023-01-17T15:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: Filter with multiple conditions plus OR</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026521#M103226</link>
      <description>&lt;P&gt;I've evidently done something wrong.&amp;nbsp; When I apply the filter to the visual, my date column (not the date I'm filtering) disappears, but the unit number column remains.&amp;nbsp; I don't believe it has the correct, filtered units however.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll continue to experiment and get back to you.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jan 2023 16:39:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3026521#M103226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-17T16:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Filter with multiple conditions plus OR</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3032216#M103687</link>
      <description>&lt;P&gt;Disregard - all is working as desired.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 18:28:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-with-multiple-conditions-plus-OR/m-p/3032216#M103687</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-01-19T18:28:04Z</dc:date>
    </item>
  </channel>
</rss>

