View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JMALTO JMALTO is offline
external usenet poster
 
Posts: 16
Default how to return data from a right hand side/and one cell down


Thanks Jacob, I made some adjustment to your sugetions but in principal your
suggestion works,


--
When it commes to machinning, I am the BEST


"Jacob Skaria" wrote:

'To return from 1 column to the right ColumnB and 2 row down
=IF(ISBLANK($C30),"",INDEX(Data!$B$1:$B$871,MATCH( $C30,Data!$A$1:$A$871,0)+2))

'To return from 2 column to the right ColumnB and 1 row down
=IF(ISBLANK($C30),"",=INDEX(Data!$C$1:$C$871,MATCH ($C30,Data!$A$1:$A$871,0)+1))

If this post helps click Yes
---------------
Jacob Skaria


"JMALTO" wrote:

I am compering the content of a cell agains another group of cells and when
it finds a match, I need the formula to return data from a specific cell on
the right hand side and one or more cell daown from it.
This is what I have so far but final yet.

=IF(ISBLANK($C30),"",VLOOKUP($C30,Data!$A$1:$C$871 ,2,FALSE))

How can I do this.
Thanks,
--
When it commes to machinning, I am the BEST