The ERLANGC function determines the probability of a request being placed in a queue given a specified number of servers, arrival rate of requests, and the average duration to process requests.

For example, you can use the ERLANGC function to ensure that a certain percentage do not enter a queue.

ERLANGC(Number of servers, Arrival rate, Average duration)

ArgumentData typeDescription
Number of serversNumberThe number of servers (for example, call center agents) available to process requests.
Arrival rateNumberThe interval between the arrival of each request.
Average durationNumberThe average duration it takes to process each request.

The ERLANGC function returns a number, which is the probability a request is placed in an infinite queue.

Erlang C is the solution to this equation:

ERLANGC(x,y,z)=αxx!αxx!+(1ρ)k=0x1αkk!ERLANG-C(x,y,z) = \dfrac{\frac{\alpha^x}{x!}}{\frac{\alpha^x}{x!}+(1-\rho)\displaystyle\sum_ {k=0}^{x-1} \frac{\alpha^k}{k!}}

In this equation:

  • x is the Number of servers.
  • y is the Arrival rate.
  • z is the Average duration.
  • a is the offered load, which is y multiplied by z.
  • p is the offered load per server, which is a divided by x.

The Arrival rate and Average duration arguments do not have to use a specific time unit. For example, they can be seconds or minutes. However, both arguments must use the same time unit.

The maximum number you can use for the Number of servers argument is five million.

Call center planning functions are unavailable in Polaris. Learn more about the differences between Anaplan calculation engines.

In this example, the Call Centers list is on columns, and line items on rows. The first three line items contain the scheduled number of servers, arrival rate of requests, and average duration to fulfil requests. The fourth line item, Queuing Possibility calculates the possibility of a call entering a queue using a formula.

The final two line items are a numeric line item, Extra Agents, to adjust the number of servers, and a formula that displays the blocking possibility after adjustment. This can be used to adjust the number of servers until the desired blocking possibility is reached (in this case, less than 15%).

Both of the line items that contain formulas use the Percentage format with two decimal places to display the possibility as a percentage.


Call Center 1Call Center 2Call Center 3Call Center 4
Scheduled Number of Agents33505540
Request Arrival Rate0.760.871.352.81
Average Duration19.2552.934.913.1

Queuing Possibility

ERLANGC(Scheduled Number of Agents, Request Arrival Rate, Average Duration)

0.00%46.04%18.93%50.41%
Extra Agents-13515

Amended Queuing Possibility

ERLANGC(Scheduled Number of Agents + Extra Agents, Request Arrival Rate, Average Duration)

13.26%13.93%14.65%13.48%