Offset to different worksheet problem

E

edwardpestian

I have the formula below, which takes the date from a cell(G8) and finds
the corresponding data in another worksheet(Data!). This formula is
working. But for some reason I can't get a second formula to look up
the data one cell to the right.

=IF(Date=0,"",OFFSET(Data!$E$5,ROW(A1)+100,MATCH(G8,Data!$F$3:$CT$3,0)))

Any suggestions?

Regards,

EP
 
J

JE McGimpsey

One way, if I understand you correctly:

=IF(Date=0, "", OFFSET(Data!$E$5, ROW(A1)+100, MATCH(G8,
Data!$F$3:$CT$3, 0) + 1))



edwardpestian
 
E

edwardpestian

Now I'd like to take it one step further and have the forumula match
based on two different cell criteria: G8 and H8. Can I do this?

=IF(Date=0, "", OFFSET(Data!$E$5, ROW(A1)+100, MATCH(G8,
Data!$F$3:$CT$3, 0) + 1))

Thanks again.

EP
 

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

Similar Threads


Top