TheTiredEngineer
New Member
- Joined
- Jul 31, 2024
- Messages
- 31
- Office Version
- 365
- Platform
- Windows
I have this table of data:
And Im trying to get a formula that can extrapolate pH values for between two rows. So say my temperature is 12C, it doesnt fit exactly into one of the rows, so it needs to extrapolate based on the values in this table already. I figure that I have to do a Match to find the pH column that I need (though thats not working either), I just need help with the extrapolation.
pH | |||||
Temp | 6 | 7 | 8 | 9 | 10 |
0.5 | 12 | 12 | 12 | 12 | 90 |
5 | 8 | 8 | 8 | 8 | 60 |
10 | 6 | 6 | 6 | 6 | 45 |
15 | 4 | 4 | 4 | 4 | 30 |
20 | 3 | 3 | 3 | 3 | 22 |
25 | 2 | 2 | 2 | 2 | 15 |
And Im trying to get a formula that can extrapolate pH values for between two rows. So say my temperature is 12C, it doesnt fit exactly into one of the rows, so it needs to extrapolate based on the values in this table already. I figure that I have to do a Match to find the pH column that I need (though thats not working either), I just need help with the extrapolation.
Excel Formula:
=Match(pH,A1:A5)