IF, OFFSET,MATCH Please Help

X

Xhawk57

Can anyone tell me what I am doing wrong? I am getting a to few arguments
error message and I am going blind staring at it.

=if(c2> OFFSET(Sheet2!$I$10,MATCH(I2,Sheet2!G$11:G$27,FALSE,0),0),
OFFSET(Sheet2!$j$10,MATCH(I2,Sheet2!G$11:G$27,FALSE,0),0),
OFFSET(Sheet2!$K$10,MATCH(I2,Sheet2!G$11:G$27,FALSE,0),0))

Also tried:
=if(c2> OFFSET(Sheet2!$I$10,MATCH(I2,Sheet2!G$11:G$27,FALSE,0)),
OFFSET(Sheet2!$j$10,MATCH(I2,Sheet2!G$11:G$27,FALSE,0)),
OFFSET(Sheet2!$K$10,MATCH(I2,Sheet2!G$11:G$27,FALSE,0)))
 
J

Jim Thomlinson

Match takes 3 arguments not 4. Delete your final zeros as a guess.

=if(c2> OFFSET(Sheet2!$I$10,MATCH(I2,Sheet2!G$11:G$27,FALSE),0),
OFFSET(Sheet2!$j$10,MATCH(I2,Sheet2!G$11:G$27,FALSE),0),
OFFSET(Sheet2!$K$10,MATCH(I2,Sheet2!G$11:G$27,FALSE),0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top