Author: MaxMax Date: Jun 14, 2008 10:54
Guessing from these lines ..:
> On worksheet 2, I want to reference worksheet
> one looking at 2 variables.
> What I want is to reference column D if columns
> I and K meet my criteria.
In Sheet2,
Assuming you have the dual criteria values for col I and K listed in A2:B2
down
In C2, array-enter (press CTRL+SHIFT+ENTER):
=INDEX(Sheet1!D$2:D$100,MATCH(1,(Sheet1!I$2:I$100=A2)*(Sheet1!K$2:K$100=B2),0))
then copy C2 down as far as required. Adapt the ranges to suit the max
expected extents of data in Sheet1.
|