I am working on an Erlang C formula and was having trouble until I found out about LAMBDA functions. They are awesome!
My formula is currently calculating the Service Level of our contact centre with a specific number of agents. If the result does not meet the target (in this case 80%) we need to more agents until it reaches at least the target or better.
I only need help with this portion of the formula. I believe a recursive LAMBDA will work with this but I'm not comprehending the syntax. Major brain fart here. Here is what I'm thinking:
target = .8
sl = current service level = ?
n = number of agents already considered
Naming LAMBDA function SLT
=LAMBDA(sl,target,n,if(sl<target,SLT+1,0))
The issue I'm running into is that the Service Level already has a formula and will be a circular reference because it is dependent on the total of n.
I'm likely going to making the whole formula into a LAMBDA function if I can get help on the above step.
If you need more information, I can include all of the factors and functions used for the final numbers.
My formulas are based on the ErlangC formula from wikipedia
And the explanation HERE
Thank you for your help.
-- g
If its not in my signature I'm using Office 365 for Windows 10.
My formula is currently calculating the Service Level of our contact centre with a specific number of agents. If the result does not meet the target (in this case 80%) we need to more agents until it reaches at least the target or better.
I only need help with this portion of the formula. I believe a recursive LAMBDA will work with this but I'm not comprehending the syntax. Major brain fart here. Here is what I'm thinking:
target = .8
sl = current service level = ?
n = number of agents already considered
Naming LAMBDA function SLT
=LAMBDA(sl,target,n,if(sl<target,SLT+1,0))
The issue I'm running into is that the Service Level already has a formula and will be a circular reference because it is dependent on the total of n.
I'm likely going to making the whole formula into a LAMBDA function if I can get help on the above step.
If you need more information, I can include all of the factors and functions used for the final numbers.
My formulas are based on the ErlangC formula from wikipedia
And the explanation HERE
Thank you for your help.
-- g
If its not in my signature I'm using Office 365 for Windows 10.