How to Determine needed adjustments to reach Target Percentage

HypnoFant

New Member
Joined
Apr 29, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Good evening,

I am currently working on a file for a call center I work in and am having a hard time figuring out a particular formula and making it work. Basically there is a monthly goal for a disconnect rate and we want this to be as low as possible. On a daily basis we have agents enter in their numbers into a shared sheet to give us a running track for the day. I'm currently trying to modify the sheet so that we can determine how many additional calls would be needed to reach the goal. The problem I am experiencing is the number of various formulas I've tried give very incorrect numbers and I'm not certain what is wrong. Here is the example numbers.
1714439262977.png


So I have attempted a variation on this formula =IF(C1>D1, (ROUNDUP(((A1*D1-B1)),0)), "PASSED") however it only provides the "passed" response. (obviously not the answer as I'm pulling examples from other posts on the forum). I've also attempted a variation on =ROUNDUP((D2*A2-B2)/(1-D2),0) however I get a response of -7. These appear to be the more common types of formulas. I know the answer on this should be 25 to reach the 20% target number. These numbers will fluctuate throughout the day as more disconnects and calls are taken by the agents.

Are there any ideas or suggestions you may have to help clarify what I'm doing wrong? Thank you for your time and expertise.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Try this:
=ROUNDUP(($B$2/$D$2)-$A$2, 1)

I can't see the row numbers in your screenshot. I'm going to assume that you have column headers in row 1 and your data starts at row 2.
 
Last edited:
Upvote 1
Thank you both @Burrgogi and @Sanjeev1976 !!! Sanjeev's solution fits better for what we need with the extra IF requirement. If I may ask, what purpose does the $ do within the excel logic structure?
 
Upvote 0
If I may ask, what purpose does the $ do within the excel logic structure?


They are called absolute cell references when used in a formula. It tells Excel to always refer to a particular cell(s), even if the cell containing the formula is moved/copied elsewhere. They are not necessary in your case but I included them just in case you decided to move your formula to another cell. Upon further thought, I probably should not have done that. If you copy the formula that Sanjeev gave you to another spot on the worksheet, say from F2 to F6 you'll see that Excel will automatically adjust the formula for you by 4 rows. This is Excel's way of "helping" the user. It's particularly helpful if you happen to have the same or similar group of data further down on the worksheet or if you move the original data elsewhere. Now copy & paste the formula that I gave you to another spot on the worksheet and you'll notice the difference right away.

To use absolute or mixed references in your formula, press F4 while you're typing the formula. For example, type: =SUM(A2, then press F4 right after you've typed in the cell address. You can toggle through that and see what it does.

Further explanation here:
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,092
Messages
6,128,782
Members
449,468
Latest member
AGreen17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top