Is this possible please if so How. Thankyou.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello from Steved

Cell A1 =VLOOKUP(F6,$U$2:$Z$2000,2,0) will get the Surname ie "ADDISON"
Cell B1=VLOOKUP(F6,$U$2:$Z$2000,3,0) will get the first Names ie "Mark James"

Ok can I get the formula to combine the both to get = "ADDISON Mark James"

so cell A1 ="ADDISON Mark James"
or
so cell A1 ="ADDISON
Mark James" (Wrap Check box ticked)

Thankyou.
 
Hello Biff from Steved

Can I impose please and ask you to take it one more stage and that is #N/A
be blank.

Thanks.
 
It's ok I looked up and found away

=IF(ISNA(VLOOKUP(F6,$U$2:$Z$2000,2,0)&CHAR(10)&VLOOKUP(F6,$U$2:$Z$2000,3,0)),"",VLOOKUP(F6,$U$2:$Z$2000,2,0)&CHAR(10)&VLOOKUP(F6,$U$2:$Z$2000,3,0))

Thankyou.
 
=IF(ISNUMBER(MATCH(F6,$U$2:$U$2000,0)),VLOOKUP(F6,$U$2:$Z$2000,2,0)&"
"&VLOOKUP(F6,$U$2:$Z$2000,3,0),"")
Hello Biff from Steved

Can I impose please and ask you to take it one more stage and that is #N/A
be blank.

Thanks.

:

--

[1] The SumProduct function should implicitly coerce the truth values to
their Excel numeric equivalents.
[2] The lookup functions should have an optional argument for the return
value, defaulting to #N/A in its absence.
 
Hello aladin from Steved

Yes much clearner Thankyou.

Aladin Akyurek said:
=IF(ISNUMBER(MATCH(F6,$U$2:$U$2000,0)),VLOOKUP(F6,$U$2:$Z$2000,2,0)&"
"&VLOOKUP(F6,$U$2:$Z$2000,3,0),"")
Hello Biff from Steved

Can I impose please and ask you to take it one more stage and that is #N/A
be blank.

Thanks.

:

--

[1] The SumProduct function should implicitly coerce the truth values to
their Excel numeric equivalents.
[2] The lookup functions should have an optional argument for the return
value, defaulting to #N/A in its absence.
 

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

Back
Top