<?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: Count rows in date table where date is ... in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871453#M92667</link>
    <description>&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;verision with&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;COUNTX&lt;/PRE&gt;&lt;P&gt;works&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Oct 2022 16:44:45 GMT</pubDate>
    <dc:creator>MasterSonic</dc:creator>
    <dc:date>2022-10-28T16:44:45Z</dc:date>
    <item>
      <title>Count rows in date table where date is ...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871393#M92660</link>
      <description>&lt;P&gt;Hi guys&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;trying to count rows in date column.&lt;BR /&gt;&lt;BR /&gt;Simply I would like to get result as count rows where date is "20/07/2020" and muliply by 50.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did try countrows but it gives error about not supporting date and text values&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 16:01:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871393#M92660</guid>
      <dc:creator>MasterSonic</dc:creator>
      <dc:date>2022-10-28T16:01:54Z</dc:date>
    </item>
    <item>
      <title>Re: Count rows in date table where date is ...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871407#M92661</link>
      <description>&lt;P&gt;thats weird can you try :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Calcualte(Count(table[date]),filter(table,table[date] = DATE(2022,07,20))) * 50&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if this works please consider acceptig it as solution and kudos&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 16:40:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871407#M92661</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-28T16:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Count rows in date table where date is ...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871432#M92664</link>
      <description>&lt;P&gt;HI there,&lt;/P&gt;&lt;P&gt;this bit works fine&lt;/P&gt;&lt;PRE&gt;Calcualte(Count(table[date]),filter(table,table[date] = DATE(2022,07,20))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;but after adding&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;* 50&lt;/PRE&gt;&lt;P&gt;I got this error&lt;BR /&gt;A function 'FILTER' has been used in a True/False expression that is used as a table filter expression. This is not allowed.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 16:27:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871432#M92664</guid>
      <dc:creator>MasterSonic</dc:creator>
      <dc:date>2022-10-28T16:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Count rows in date table where date is ...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871436#M92665</link>
      <description>&lt;P&gt;ok please try :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure = CALCULATE(COUNTX(Table1,Table1[Column]),FILTER(Table1,Table1[Date] = DATE(2022,07,20))) * 50&lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 16:38:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871436#M92665</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-28T16:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Count rows in date table where date is ...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871447#M92666</link>
      <description>&lt;P&gt;i think you missed a bracket when closing the calculate please make sure&lt;/P&gt;&lt;PRE&gt;Calcualte(Count(table[date]),filter(table,table[date] = DATE(2022,07,20))&lt;/PRE&gt;&lt;P&gt;this should be&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Calcualte(Count(table[date]),filter(table,table[date] = DATE(2022,07,20))&lt;FONT color="#FF0000"&gt;)&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 16:41:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871447#M92666</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-28T16:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Count rows in date table where date is ...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871453#M92667</link>
      <description>&lt;P&gt;Thank You,&lt;/P&gt;&lt;P&gt;verision with&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;COUNTX&lt;/PRE&gt;&lt;P&gt;works&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2022 16:44:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-rows-in-date-table-where-date-is/m-p/2871453#M92667</guid>
      <dc:creator>MasterSonic</dc:creator>
      <dc:date>2022-10-28T16:44:45Z</dc:date>
    </item>
  </channel>
</rss>

