Formula Help| Finding Time depending on attempts

Rara1424

New Member
Joined
May 28, 2019
Messages
3
Hi Guys,

I have a table like this:

[TABLE="width: 437"]
<colgroup><col><col><col><col><col></colgroup><tbody>[TR]
[TD]Current Attempts[/TD]
[TD]Current Average Time[/TD]
[TD]Goal[/TD]
[TD]Remaining Attempts[/TD]
[TD]Time I need to get to goal[/TD]
[/TR]
[TR]
[TD]50[/TD]
[TD]250.00[/TD]
[TD]210.00[/TD]
[TD]25.00[/TD]
[TD]> help here <


[/TD]
[/TR]
</tbody>[/TABLE]
I'm looking for a formula on how much time I need to get to my goal. Math is not really my thing so I'm resorting to excel. Thanks guys.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
The formula you are looking for is
((Total Number of attempts * Goal) - (Current Number of Attemps * Current Average)) / Remaining Attempts

Using your numbers

((75*210.00) - (50*250.00)) / 25 = 130.00. You must average 130.00 on your remaining 25 attempts to achieve an overall average of 210.00

And if your data row starts in Cell A2 the formula in E2 would be
=(((A2+D2)*C2)-(A2*B2))/D2

Regards

shane
 
Upvote 0
Note that the way excel goes about working formulas out, its not completely necessary for all the brackets. Might be handy to understand whats going on but may also add more confusion.
 
Upvote 0

Forum statistics

Threads
1,224,818
Messages
6,181,152
Members
453,021
Latest member
Justyna P

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