Help with automating a small process

knewuser

New Member
Joined
Dec 21, 2022
Messages
2
Office Version
  1. 2021
Platform
  1. Windows
Screenshot 2022-12-21 at 17.09.25.png


Hi, i am trying to automate a series of actions. My goal is to calculate "final score" here for a chosen F9 cell value. 1. First, i will choose a number from the drop down in F9 cell. 2. the "final score" cell will be equal to "initial score" as long as the "position row" value is less than F9 and we have used all the values in "boost factor row". For example, i choose 4 in F9. Then,
I9= I8 because I7<F9
J9= J8 because J7<F9
K9= K8 because K7<F9
Now, L7=>F9, So
L9= I5*L8 because L7>=F9
M9 = J5*M8 because M7>F9
N9 = K5*N8 because N7>F9
O9 = L5*O8 because O7>F9
Now, we no longer have any values for "boost factor"row. So, again
P9 = P8,
Q9= Q8 and so on...

Can anyone please share a formula or tips to implement this ? Thanks in advance.
 

Attachments

  • Screenshot 2022-12-21 at 17.05.21.png
    Screenshot 2022-12-21 at 17.05.21.png
    104.9 KB · Views: 8
  • 1671643116372.png
    1671643116372.png
    108.3 KB · Views: 9

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Welcome to the MrExcel Message Board!

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: Help with couple of steps in excel
If you have posted the question at more places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0
Welcome to the MrExcel Message Board!

Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: Help with couple of steps in excel
If you have posted the question at more places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
Hi, thanks for adding the cross posting and sorry for not following the rules. this is my first post. If there is no use in cross-posting, i am fine for removing it. Otherwise, this is my mini-sheet.

formula.xlsx
FGHIJKLMNOPQRSTUVWXY
4abcde
5boost factor34567
6INPUT CELLS
7position1234567891011121314151617
8Selected start positioninitial Score1015202530354045505560657075808590
94final score10152075120175240315505560455055606570
10Selected end position
1112
12
13Reduction from final score
1420
15
16
17I am trying to automate the calculation of final score in row 9 based on the input cells. Currently the final score row has formulas that can manually calculate final score.
18
19
Sheet1
Cell Formulas
RangeFormula
J7:Y7J7=I7+1
J8:Y8J8=I8+5
I9:K9,Q9:S9I9=I8
L9:P9L9=L8*I5
T9:Y9T9=T8-$F14
Cells with Data Validation
CellAllowCriteria
F9List=$L$7:$S$7
F11List=$L$7:$Y$7
 
Upvote 0
How about
Excel Formula:
=IF(I7<$F9,I8,I8*IFERROR(INDEX($I$5:$M$5,I7-$F9+1),1))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,642
Messages
6,120,700
Members
448,979
Latest member
DET4492

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