View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JE McGimpsey
 
Posts: n/a
Default Offset to different worksheet problem

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))



In article
,
edwardpestian
wrote:

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(G 8,Data!$F$3:$CT$3,0)))

Any suggestions?

Regards,

EP