A
Allison Faris
I have a fairly simple problem. I have a three column
array and want to retrieve the value from the third column
that corresponds to a pair of values, e.g. if my array is:
1,1,1
1,2,3
1,3,4
2,1,3
2,2,4
2,3,5
3,1,4
3,2,5
3,3,6
and I want to retrieve the value in the third column
corresponding to the pair (2,3), I would get 5.
Any ideas on how to achieve this? Thanks.
array and want to retrieve the value from the third column
that corresponds to a pair of values, e.g. if my array is:
1,1,1
1,2,3
1,3,4
2,1,3
2,2,4
2,3,5
3,1,4
3,2,5
3,3,6
and I want to retrieve the value in the third column
corresponding to the pair (2,3), I would get 5.
Any ideas on how to achieve this? Thanks.