<?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: How to count all rows that contain a specific time value and above in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2985123#M100147</link>
    <description>&lt;P&gt;Another method:&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;CALCULATE (
    COUNT ( Orders[Order Time] ),
    Orders[Order Time] &amp;lt;= TIME ( 11, 0, 0 )
)&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 22 Dec 2022 19:52:19 GMT</pubDate>
    <dc:creator>AlexisOlson</dc:creator>
    <dc:date>2022-12-22T19:52:19Z</dc:date>
    <item>
      <title>How to count all rows that contain a specific time value and above</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2984706#M100122</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to write a measure that would allow me to count all the rows in a column that contain "11:00:00 AM" or any time before that. Table name is Master and column name is Order Time.&amp;nbsp;&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;Thank you in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="83269" data-lia-user-login="po" class="lia-mention lia-mention-user"&gt;po&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 15:52:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2984706#M100122</guid>
      <dc:creator>am_i_really</dc:creator>
      <dc:date>2022-12-22T15:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to count all rows that contain a specific time value and above</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2984757#M100125</link>
      <description>&lt;P&gt;hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="490352" data-lia-user-login="am_i_really" class="lia-mention lia-mention-user"&gt;am_i_really&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;try like:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;COUNTROWS(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;FILTER(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ALL(&lt;/SPAN&gt;&lt;SPAN&gt;Master),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Master[Order Time] &amp;lt;= 11/24&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Dec 2022 16:06:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2984757#M100125</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-12-22T16:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to count all rows that contain a specific time value and above</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2984773#M100127</link>
      <description>&lt;P&gt;Thank you, worked like a charm!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 16:10:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2984773#M100127</guid>
      <dc:creator>am_i_really</dc:creator>
      <dc:date>2022-12-22T16:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to count all rows that contain a specific time value and above</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2985123#M100147</link>
      <description>&lt;P&gt;Another method:&lt;/P&gt;
&lt;LI-CODE lang="php"&gt;CALCULATE (
    COUNT ( Orders[Order Time] ),
    Orders[Order Time] &amp;lt;= TIME ( 11, 0, 0 )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 22 Dec 2022 19:52:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-count-all-rows-that-contain-a-specific-time-value-and/m-p/2985123#M100147</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2022-12-22T19:52:19Z</dc:date>
    </item>
  </channel>
</rss>

