<?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 Helping counting entries in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477330#M132869</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently have a table with dates ( please see attached), I would like to count how many entries per date to put it onto a card visual so I can see how many lates for example we had on one day.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example&amp;nbsp;&lt;/P&gt;&lt;P&gt;01/01/2023- 35 entries made&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;02/05/2023 - 4 Entries made.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you look at the Calendar 28th March is on there mutiple times I would like the table to count how many times it is on there so I can then use it on a card to say how many on the 28th were created.&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I can then filter this down on PowerBI using the card visual and select the date to see how many entries are made.&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;</description>
    <pubDate>Sun, 15 Oct 2023 13:12:50 GMT</pubDate>
    <dc:creator>Jacks060650</dc:creator>
    <dc:date>2023-10-15T13:12:50Z</dc:date>
    <item>
      <title>Helping counting entries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477330#M132869</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently have a table with dates ( please see attached), I would like to count how many entries per date to put it onto a card visual so I can see how many lates for example we had on one day.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example&amp;nbsp;&lt;/P&gt;&lt;P&gt;01/01/2023- 35 entries made&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;02/05/2023 - 4 Entries made.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you look at the Calendar 28th March is on there mutiple times I would like the table to count how many times it is on there so I can then use it on a card to say how many on the 28th were created.&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I can then filter this down on PowerBI using the card visual and select the date to see how many entries are made.&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;</description>
      <pubDate>Sun, 15 Oct 2023 13:12:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477330#M132869</guid>
      <dc:creator>Jacks060650</dc:creator>
      <dc:date>2023-10-15T13:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Helping counting entries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477364#M132871</link>
      <description>&lt;P&gt;Hi, I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below pictures and the attached pbix file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Expected result measure: = 
VAR _t =
    ADDCOLUMNS (
        Data,
        "@countrows", COUNTROWS ( FILTER ( Data, Data[Created] = EARLIER ( Data[Created] ) ) )
    )
RETURN
    CONCATENATEX (
        SUMMARIZE ( _t, Data[Created], [@countrows] ),
        Data[Created] &amp;amp; "  - " &amp;amp; [@countrows] &amp;amp; " entry(entries) made",
        UNICHAR ( 10 )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2023 14:29:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477364#M132871</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2023-10-15T14:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Helping counting entries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477367#M132872</link>
      <description>&lt;P&gt;It looks a good way however the card I would like it just showing the number for the day.&amp;nbsp; (Please ifnd attached image)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example I have taken 23 sick calls today and if i filter it by date on the image it will let me see that 23 people called in sick, if that makes sence?&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;</description>
      <pubDate>Sun, 15 Oct 2023 14:36:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477367#M132872</guid>
      <dc:creator>Jacks060650</dc:creator>
      <dc:date>2023-10-15T14:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Helping counting entries</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477426#M132881</link>
      <description>&lt;P&gt;Hi, Thank you for your message.&lt;BR /&gt;I think the solution is related how you model your data, because I think, it shows count of rows in the fact table.&lt;BR /&gt;Please share your sample pbix file's link here, and then I can try to look into it to come up with a solution.&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 15 Oct 2023 17:07:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Helping-counting-entries/m-p/3477426#M132881</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2023-10-15T17:07:32Z</dc:date>
    </item>
  </channel>
</rss>

