View Single Post
  #4   Report Post  
Danny
 
Posts: n/a
Default

I am not sure if I can make this work. Let me try to give you the whole
story. I work at a Hydro Electric plant. Our dam has boards on top that pop
of during high water. We have to account for the water that goes over the
boards and through the space of the missing boards.
We have a table that list the amount of water that goes through the boards.
The table has the elevations in the left column and the boards missing in the
top row.
We have log sheet that we put all this information on. We would like to put
the lake elevation in a cell on the log sheet and the number of boards in
another cell of the log sheet and have a formula that will go to the table
and find the intersecting cell and put the information in another cell on the
log sheet.
Is this possible?

"Ron Coderre" wrote:

Let's see if I understand what your asking for.

A1 has some value
B1 has another value

You want to find the value of A1 in the left column of the the table and and
the value of B1 in the top row of the table.
Once found, you want to find the intersection of the row of the left column
matched value and the column of the top row matched value.

If that's correct, try this (assuming your table is contained in C1:G10

=INDEX(C1:G10,MATCH(A1,C1:C10,0),MATCH(B1,C1:G1,0) )

The INDEX function returns the value of the cell at the intersection of a
certain row and column of a range.
So if the A1 value is 3 rows down and the B1 value is 2 colums across, then
the INDEX function will look in the range C1:G10 and find the value of the
cell that is in the 3rd row and 2nd column.

Does that help?

Ron