bryandaniel5
New Member
- Joined
- Sep 28, 2023
- Messages
- 5
- Office Version
- 365
- Platform
- Windows
- MacOS
I have a spreadsheet with a list of values that I need to run each through the same series of calculations on another sheet and then output the answer to each into another column in a table
Here is the sample table with the values i need to input into a series of calculations:
Here is a sample of calculations i might want to put each value through and fill in the Output Values column of the above table.
i've thought maybe the array function might be the answer, but after spending about 45 minutes searching the web, i can't find an answer. Anybody have any suggestions?
Here is the sample table with the values i need to input into a series of calculations:
Book1 | |||||
---|---|---|---|---|---|
B | C | D | |||
1 | Input Values | Output Values | |||
2 | a | 12352 | |||
3 | b | 983720 | |||
4 | c | 3928 | |||
5 | d | 93849 | |||
6 | e | 35702 | |||
7 | f | 46392 | |||
8 | g | 12830 | |||
Sheet1 |
Here is a sample of calculations i might want to put each value through and fill in the Output Values column of the above table.
Book1 | ||||
---|---|---|---|---|
B | C | |||
2 | Input Value | 12352 | ||
3 | Calculation 1 | 111.139552 | ||
4 | Calculation 2 | 1372795.75 | ||
5 | Calculation 3 | 62399.8066 | ||
6 | Calculation 4 | 249748.302 | ||
7 | Calculation 5 | 335599.281 | ||
8 | Output value | 27.1696309 | ||
Sheet2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C2 | C2 | =Sheet1!C2:C8 |
C3 | C3 | =SQRT(C2) |
C4 | C4 | =C3^3 |
C5 | C5 | =C4/22 |
C6 | C6 | =C5*1.274*PI() |
C7 | C7 | =C6/32*43 |
C8 | C8 | =C7/C2 |
Press CTRL+SHIFT+ENTER to enter array formulas. |
i've thought maybe the array function might be the answer, but after spending about 45 minutes searching the web, i can't find an answer. Anybody have any suggestions?