<?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: Determine Number of waiting calls in a queue in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3995057#M155163</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="361835" data-lia-user-login="Thomas_MedOne" class="lia-mention lia-mention-user"&gt;Thomas_MedOne&lt;/a&gt;&amp;nbsp;&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="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp;Thank you very much for your prompt reply and here allow me to share some of it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To create an hourly or half-hourly date/schedule in Power BI, you can try the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For hourly intervals, the incremental value 1/24 can be used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = GENERATESERIES(DATE(2021,1,1), NOW(), 1/24)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For half-hour intervals, you can use the 1/48.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = GENERATESERIES(DATE(2021,1,1), NOW(), 1/48)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Nono Chen&lt;/P&gt;
&lt;P&gt;If this &lt;STRONG&gt;&lt;EM&gt;post&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;helps, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Mon, 17 Jun 2024 01:42:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-06-17T01:42:08Z</dc:date>
    <item>
      <title>Determine Number of waiting calls in a queue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3993591#M155023</link>
      <description>&lt;P&gt;I am reporting on call queue data pulled out of Zoom.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I have in my table is:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;Time Call Started (the first moment it came into the queue)&amp;nbsp; Ex: 02/23/2024 2:49:00am&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;Total duration they were in the queue and handled.&amp;nbsp; Ex: (minutes) 4.7333&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am asked to report on how many calls were in the queue at any given time. How many were waiting in the queue. I assume there is some way to do this because I know when the call started and how long it lasted.&amp;nbsp; So I should be able to see how it stacks up and then report on it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have no idea how to create a measure or even just a report on something like this.&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 14:50:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3993591#M155023</guid>
      <dc:creator>Thomas_MedOne</dc:creator>
      <dc:date>2024-06-14T14:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Determine Number of waiting calls in a queue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3993672#M155026</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="361835" data-lia-user-login="Thomas_MedOne" class="lia-mention lia-mention-user"&gt;Thomas_MedOne&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I would create a seperate date/time table and do not relate it to the zoom data table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a slicer on that table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then create a measure like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CallsInQueue=&lt;/P&gt;
&lt;P&gt;var SelectedDateTime= Selectedvalue(DateTimeTable[DateTime])&lt;/P&gt;
&lt;P&gt;return&lt;/P&gt;
&lt;P&gt;Calculate(Countrows([ZoomDataTableName]), FILTER(ZoomDataTableName,&amp;nbsp;ZoomDataTableName[DateTime]= SelectedDateTime))&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jun 2024 15:51:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3993672#M155026</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2024-06-14T15:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Determine Number of waiting calls in a queue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3993928#M155039</link>
      <description>&lt;P&gt;I tried creating a Date/Time table with this below. It's all midnight. How do I create one with each hour of the day? Perhaps every half hour?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DateTime =&lt;/SPAN&gt; &lt;SPAN&gt;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;CALENDAR&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;DATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;2023&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;12&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;DATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;2030&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;12&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;31&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;"DateTT"&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;Format&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"dd/mm/yyyy h:nn AMPM"&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 14 Jun 2024 20:24:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3993928#M155039</guid>
      <dc:creator>Thomas_MedOne</dc:creator>
      <dc:date>2024-06-14T20:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Determine Number of waiting calls in a queue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3995057#M155163</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="361835" data-lia-user-login="Thomas_MedOne" class="lia-mention lia-mention-user"&gt;Thomas_MedOne&lt;/a&gt;&amp;nbsp;&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="283130" data-lia-user-login="djurecic" class="lia-mention lia-mention-user"&gt;djurecic&lt;/a&gt;&amp;nbsp;Thank you very much for your prompt reply and here allow me to share some of it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To create an hourly or half-hourly date/schedule in Power BI, you can try the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For hourly intervals, the incremental value 1/24 can be used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = GENERATESERIES(DATE(2021,1,1), NOW(), 1/24)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For half-hour intervals, you can use the 1/48.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = GENERATESERIES(DATE(2021,1,1), NOW(), 1/48)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Nono Chen&lt;/P&gt;
&lt;P&gt;If this &lt;STRONG&gt;&lt;EM&gt;post&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;helps, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 01:42:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/3995057#M155163</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-17T01:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: Determine Number of waiting calls in a queue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/4000263#M155794</link>
      <description>&lt;P&gt;I am not sure why a solution was accept on my post. I haven't tried this yet because I have payroll this week and do not have the time to try this out yet.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2024 13:47:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Determine-Number-of-waiting-calls-in-a-queue/m-p/4000263#M155794</guid>
      <dc:creator>Thomas_MedOne</dc:creator>
      <dc:date>2024-06-19T13:47:51Z</dc:date>
    </item>
  </channel>
</rss>

