View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Brian
 
Posts: n/a
Default What function will find a value in a table with X & Y Values

Thanks fo rthe respones but I'm not familar with those two functions, and am
can't fit what you provided into what I need.

So, with the table below, if 10-30 are column headers and 2000-7000 are row
headers, with a temp of 20 and a alt of 3500 given is there a formula that
will come up with the value 143 which is where the column and row intersect?

FYI the values in the table that are not headers will be random in the
actual table...


10 15 20 25 30
2000 111 112 113 114 115
2500 121 122 123 124 125
3000 131 132 133 134 135
3500 141 142 143 144 145
4000 151 152 153 154 155
4500 161 162 163 164 165
5000 171 172 173 174 175
5500 181 182 183 184 185
6000 191 192 193 194 195
6500 201 202 203 204 205
7000 211 212 213 214 215

"Elkar" wrote:

You could combine the VLOOKUP and MATCH functions. Something like this,
depending how your table is setup.

=VLOOKUP(A1,B1:F100,MATCH(A2,B1:F100,0),FALSE)

With Altitude and Temp to find stored in A1 and A2.

HTH,
Elkar


"Brian" wrote:

I have a table that has Temps along the x axis and Altitude down the Y axis.
Whats a formula that would display the value in the cell where a given Alt
value and Temp value meet?

Thanks