Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi is there a way to add multiple VLOOKUP to one cell like below.
=VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) and add this to the cell as well VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE) Many thanks Mark |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
you can concatenate ---
=VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) & VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE) "terilad" wrote in message ... Hi is there a way to add multiple VLOOKUP to one cell like below. =VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) and add this to the cell as well VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE) Many thanks Mark |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for your response, it has to only return one entry, so it has to
lookup all cells but only return what entry is in cell, it has to be or not all of data. =VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) or VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE) But this does not work. Any other ideas. Thanks Mark "Patrick Molloy" wrote: you can concatenate --- =VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) & VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE) "terilad" wrote in message ... Hi is there a way to add multiple VLOOKUP to one cell like below. =VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) and add this to the cell as well VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE) Many thanks Mark |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Untested - please double check parentheses:
=IF(ISNA(VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE)),VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE), VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE))) If the D8 lookup fails, use the E10 lookup If both fail you will get #N/A Avoid this with =IF(ISNA(VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE)), IF(ISNA(VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE),"Neither" ,VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE))), VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE))) best wishes -- Bernard V Liengme Microsoft Excel MVP http://people.stfx.ca/bliengme remove caps from email "terilad" wrote in message ... Hi is there a way to add multiple VLOOKUP to one cell like below. =VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) and add this to the cell as well VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE) Many thanks Mark |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can you have a look at the following code, I am trying to enter but getting
an error with formula =IF(ISNA(VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE)),VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE)),VLOOKUP('Kelso Resources'!D14,C25:G25,3,false)),VLOOKUP('Kelso Resources'!D18,C25:G25,4,false)),VLOOKUP('Kelso Resources'!D24,C25:G25,3.false)),VLOOKUP('Kelso Resources'!D28,C25:G25,2,false)),VLOOKUP('Kelso Resources'!E30,C25:G25,5,false)),VLOOKUP('Kelso Resources'!D34,C25:G25,4,false)),VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) Many thanks Mark "Bernard Liengme" wrote: Untested - please double check parentheses: =IF(ISNA(VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE)),VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE), VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE))) If the D8 lookup fails, use the E10 lookup If both fail you will get #N/A Avoid this with =IF(ISNA(VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE)), IF(ISNA(VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE),"Neither" ,VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE))), VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE))) best wishes -- Bernard V Liengme Microsoft Excel MVP http://people.stfx.ca/bliengme remove caps from email "terilad" wrote in message ... Hi is there a way to add multiple VLOOKUP to one cell like below. =VLOOKUP('Kelso Resources'!D8,C25:G25,2,FALSE) and add this to the cell as well VLOOKUP('Kelso Resources'!E10,C25:G25,5,FALSE) Many thanks Mark |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLookUp - Does the VLookUp return the exact information? | Excel Worksheet Functions | |||
using a vlookup to enter text into rows beneath the vlookup cell | Excel Programming | |||
Combine VLOOKUP and IF function so #NA isn't returned as a value from VLOOKUP | Excel Discussion (Misc queries) | |||
Which is faster: VLOOKUP-worksheet or VB-array VLOOKUP? | Excel Programming | |||
Vlookup -=VLOOKUP(F9,LookUp1!$A$2:$B$1504,2,FALSE) | New Users to Excel |