QUESTION
I need calculate a rate of climb for an aircraft. The problem is that I have a different table for different weight. In those tables, the two variables are Temp and Altitude pressure. So depending on the weight, I need to read a specific table and then need to know the temp and Alt Px to find the rate of climb.
ANSWER
It sounds like you need to combine an IF function with a vlookup function.
Something like this...
=if(weight=a,vlookup(value, in table A),vlookup(value,in table B))
The if function excepts three parameters:
You'll need to create 2 formulas one for figuring out the Alt Px value and one for the 'temp' value.
