Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm hoping there is an Fx function for this.
Col A Col B Col F Col G (data) (result) (data) (data) Multiple rows. I want to compare individual cells in Col A to the range of cells in Col F, and if it finds a match, I want the corresponding G row to copy to Col B I think I know the first part of the formula =IF(A2=$F$2:$F$10, ????,"") It's the ???? I can't seem to formulate. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=IF(NOT(ISERROR(LOOKUP(A2,F2:F10))),G2,"")
-- Brevity is the soul of wit. "Hurler99" wrote: I'm hoping there is an Fx function for this. Col A Col B Col F Col G (data) (result) (data) (data) Multiple rows. I want to compare individual cells in Col A to the range of cells in Col F, and if it finds a match, I want the corresponding G row to copy to Col B I think I know the first part of the formula =IF(A2=$F$2:$F$10, ????,"") It's the ???? I can't seem to formulate. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
IF(ISERROR(VLOOKUP(A2,$F$2:$G$10,2,0),"",VLOOKUP(A 2,$F$2:$G$10,2,0)))
"Hurler99" wrote: I'm hoping there is an Fx function for this. Col A Col B Col F Col G (data) (result) (data) (data) Multiple rows. I want to compare individual cells in Col A to the range of cells in Col F, and if it finds a match, I want the corresponding G row to copy to Col B I think I know the first part of the formula =IF(A2=$F$2:$F$10, ????,"") It's the ???? I can't seem to formulate. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I set up Data entry to match My Application Form | Excel Discussion (Misc queries) | |||
transfering data from a table to a line graph | Charts and Charting in Excel | |||
Transfering colours | Excel Worksheet Functions | |||
Transfering a row of data to a template word or worksheet | Excel Discussion (Misc queries) |