<?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: Calculate employee inputs and outputs from an expected number of employees in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4045983#M160473</link>
    <description>&lt;P&gt;I'm sorry if i wasn't clear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not the start and end time for each employee.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 3 tables&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- incoming calls by half-hours &lt;EM&gt;(to simplify beacause in reality i have a table for each call)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- outgoing calls by half hours&amp;nbsp;&lt;EM&gt;(to simplify beacause in reality i have a table for each call)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&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;- dimension table of half-hours&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then for each half-hour, i determine the number of incoming and outgoing calls&lt;/P&gt;&lt;P&gt;Then i calculate a total time treatment for these calls :&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TOTAL_TREATMENT_TIME = sum(INCOMING_CALLS[INCOMING])*200+sum(OUTGOING_CALL[OUTGOING])*150&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and after i calcultate a number of agent needed to treat this calls (1800s in one half-hour)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AGENT_NEEDED = roundup([TOTAL_TREATMENT_TIME]/1800,0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And after that i would like to determine when agents need to start to be sure that i have enought people to treat the calls.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The blue column is the number of agent present for each half hour.&lt;/P&gt;&lt;P&gt;Between 00:00 to 06:30, i have 1 employee, the one who works at night and began at 22:30 on previous day.&lt;/P&gt;&lt;P&gt;At 06:00, a agent need to start because i need 2 persons to treat the call, so i have 2 agents present.&lt;/P&gt;&lt;P&gt;At 06:30, 3 agents start because 4 persons are needed. And i have the one who start at 06:00 but not the one who finish at 6:30.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And i had agent by half-hour until i reach the maximum of agents nedeed (21) at 10:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this agents who started leave 8,5 hours later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i need to had some other people on the next half-hours to be able to treat calls at the end of the day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;first step :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 agent is missing at 16:00.&lt;/P&gt;&lt;P&gt;So i made 1 agent began at 10h30 and finish at 19:00&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;but 3 agents are now missing at 16h30.&lt;/P&gt;&lt;P&gt;So i had 3 agents at 11:00 and they finish at 19h30&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and so on until the blue column is at least greater then the agent_needed column for each half-hour&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope i am more clear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, not easy to explain...&lt;/P&gt;</description>
    <pubDate>Wed, 17 Jul 2024 11:19:46 GMT</pubDate>
    <dc:creator>_JohnDee_</dc:creator>
    <dc:date>2024-07-17T11:19:46Z</dc:date>
    <item>
      <title>Calculate employee inputs and outputs from an expected number of employees</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4044116#M160407</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need your help in Power BI to calculate employee inputs and outputs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For each half hour, I determine a number of incoming calls (INCOMING) and a number of outgoing calls (OUTGOING).&lt;/P&gt;&lt;P&gt;To these volumes, I apply an average processing time (200s for an incoming call and 150s for an outgoing call).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thus determine a total processing time (TOTAL_TREATMENT_TIME) which I divide by 1800s (1800s in half an hour).&lt;/P&gt;&lt;P&gt;This allows me to calculate a number of employees (rounding up) capable of absorbing the call load (AGENT_NEEDED variable).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I now need are two new columns that allow me to determine how many employees to clock in and out per half hour with the following constraints:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- 1 employee works nights and starts the day before at 10:30 p.m. and finishes at 6:30 a.m. So I must necessarily have an entry at 10:30 p.m. and an exit at 6:30 a.m. He's the only one who works over 2 days.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- For other employees, 1 entry must correspond to 1 exit, 8:30 hours later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-&amp;nbsp;the number of employees present (=entries - exits) must at least correspond to the expected (AGENT_NEEDED)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the expected result with fictitious data :&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;Here is the pbix file.&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/file/d/1F4VzeJEOBTPxQmJCo6CDF3jBm-qOmv8R/view?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/file/d/1F4VzeJEOBTPxQmJCo6CDF3jBm-qOmv8R/view?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your advices.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2024 11:00:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4044116#M160407</guid>
      <dc:creator>_JohnDee_</dc:creator>
      <dc:date>2024-07-16T11:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate employee inputs and outputs from an expected number of employees</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4045821#M160464</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="570728" data-lia-user-login="_JohnDee_" class="lia-mention lia-mention-user"&gt;_JohnDee_&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since I was unable to open the link to the pbix file you provided, I created some of my own data to fulfil your requirements.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create MEASURE to count the number of employees that start during the period.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MEASURE =
VAR _pre =
SELECTEDVALUE ( 'Table 2'[Index] ) - 1
VAR _time =
CALCULATE (
MAX ( 'Table 2'[half_hour] ),
FILTER ( ALL ( 'Table 2' ), 'Table 2'[Index] = _pre )
)
VAR _count =
CALCULATE (
COUNT ( 'Table'[id] ),
FILTER (
ALL ( 'Table' ),
'Table'[start] &amp;lt;= MAX ( 'Table 2'[half_hour] )
&amp;amp;&amp;amp; 'Table'[start] &amp;gt; _time
)
)
RETURN
_count&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;The same logic applies to the count at the end, so I won't repeat it here. Also, I am unable to understand your logic in the blue column in the diagram and need further explanation from you.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Also, I hope you can share the data in some other way so that we can better help you with your problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Clara Gong&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 09:16:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4045821#M160464</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-17T09:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate employee inputs and outputs from an expected number of employees</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4045913#M160468</link>
      <description>&lt;P&gt;Hello and thank you for you answer. I will take time to look at your solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a another test to share my pbix file, hope it will works this time :&amp;nbsp;&lt;A href="https://uploadnow.io/f/qnyvrBT" target="_blank" rel="noopener"&gt;https://uploadnow.io/f/qnyvrBT&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How did you do tho share directly your pbix file ? &lt;span class="lia-unicode-emoji" title=":thinking_face:"&gt;🤔&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 10:22:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4045913#M160468</guid>
      <dc:creator>_JohnDee_</dc:creator>
      <dc:date>2024-07-17T10:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate employee inputs and outputs from an expected number of employees</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4045983#M160473</link>
      <description>&lt;P&gt;I'm sorry if i wasn't clear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not the start and end time for each employee.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 3 tables&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- incoming calls by half-hours &lt;EM&gt;(to simplify beacause in reality i have a table for each call)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- outgoing calls by half hours&amp;nbsp;&lt;EM&gt;(to simplify beacause in reality i have a table for each call)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&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;- dimension table of half-hours&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then for each half-hour, i determine the number of incoming and outgoing calls&lt;/P&gt;&lt;P&gt;Then i calculate a total time treatment for these calls :&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TOTAL_TREATMENT_TIME = sum(INCOMING_CALLS[INCOMING])*200+sum(OUTGOING_CALL[OUTGOING])*150&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and after i calcultate a number of agent needed to treat this calls (1800s in one half-hour)&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AGENT_NEEDED = roundup([TOTAL_TREATMENT_TIME]/1800,0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And after that i would like to determine when agents need to start to be sure that i have enought people to treat the calls.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The blue column is the number of agent present for each half hour.&lt;/P&gt;&lt;P&gt;Between 00:00 to 06:30, i have 1 employee, the one who works at night and began at 22:30 on previous day.&lt;/P&gt;&lt;P&gt;At 06:00, a agent need to start because i need 2 persons to treat the call, so i have 2 agents present.&lt;/P&gt;&lt;P&gt;At 06:30, 3 agents start because 4 persons are needed. And i have the one who start at 06:00 but not the one who finish at 6:30.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And i had agent by half-hour until i reach the maximum of agents nedeed (21) at 10:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this agents who started leave 8,5 hours later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i need to had some other people on the next half-hours to be able to treat calls at the end of the day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;first step :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 agent is missing at 16:00.&lt;/P&gt;&lt;P&gt;So i made 1 agent began at 10h30 and finish at 19:00&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;but 3 agents are now missing at 16h30.&lt;/P&gt;&lt;P&gt;So i had 3 agents at 11:00 and they finish at 19h30&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and so on until the blue column is at least greater then the agent_needed column for each half-hour&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope i am more clear.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, not easy to explain...&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 11:19:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4045983#M160473</guid>
      <dc:creator>_JohnDee_</dc:creator>
      <dc:date>2024-07-17T11:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate employee inputs and outputs from an expected number of employees</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4046054#M160479</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;incoming calls&lt;/P&gt;&lt;P&gt;&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;outgoing calls&lt;/P&gt;&lt;P&gt;&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;dimension table of half-hours&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then i calculate number of incoming and outcoming call.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then i calcultate total time need to treat (200s for incoming and 150 for outgoing)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TOTAL_TREATMENT_TIME = sum(INCOMING_CALLS[INCOMING])*200+sum(OUTGOING_CALL[OUTGOING])*150&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then i calculated numbre of agent needed to treat all the calls by half-hour&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;AGENT_NEEDED = roundup([TOTAL_TREATMENT_TIME]/1800,0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;(1800s in 1 half-hour)&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;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 12:06:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4046054#M160479</guid>
      <dc:creator>_JohnDee_</dc:creator>
      <dc:date>2024-07-17T12:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate employee inputs and outputs from an expected number of employees</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4046088#M160480</link>
      <description>&lt;P&gt;and then i need to determine automatically , when employee need to start.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the blue column is the number of employees present for each half-hour.&lt;/P&gt;&lt;P&gt;Between 00:00 to 05:30 i have only 1 agent, it's the one who work at night and start at 22:30 on previous day.&lt;/P&gt;&lt;P&gt;At 06:00, an agent need to start beacause 2 agents are needed&lt;/P&gt;&lt;P&gt;At 06:30, i need 4 agents. It's the end for the night agent, 1 agent is already here (start at 06:00) so 3 agents must start at 06:30.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and so on until i reach the maximum of agents nedeed across all half-hours, 21 agents at 10:00.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And all agents who start must leave 8,5 hours later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so this is the situation at this moment :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i can see that one agent is missing at 16:00 (11 vs 12 needed)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i had to add one agent to start at 10:30 and finish at 19:00&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;and now, 3 agents are missing at 16:30 (7 vs 10 needed)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i had to add 3 agents to start at 11:00 and finish at 19:30&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;and now, 2 agents are missing at 17:00 (7 vs 9 needed)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So i had to add 2 agents to start at 11:30 and finish at 20:00&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And so one until the blue column is at least greater than AGENT_NEEDED column for each half-hour&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2024 12:22:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-employee-inputs-and-outputs-from-an-expected-number-of/m-p/4046088#M160480</guid>
      <dc:creator>_JohnDee_</dc:creator>
      <dc:date>2024-07-17T12:22:16Z</dc:date>
    </item>
  </channel>
</rss>

