Space between to functions on the same cell

vaesir

New Member
Joined
Apr 21, 2017
Messages
11
Hi there,
I have this function and I would like the display to add a space between the functions
Code:
=IF($A11="","",VLOOKUP($A11,Employees!$A:$AM,2,0)) & IF($A11="","",VLOOKUP($A11,Employees!$A:$AM,3,0))

At the moment it shows this
Code:
[TABLE="width: 64"]
<tbody>[TR]
  [TD="class: xl64, width: 64"]NameSurmane
[/TD]
[/TR]
</tbody>[/TABLE]

And I want this
Code:
Name Surname

Thanks
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Like this:

=IF($A11="","",VLOOKUP($A11,Employees!$A:$AM,2,0)) & " " & IF($A11="","",VLOOKUP($A11,Employees!$A:$AM,3,0))
 
Upvote 0
That's not because of what I've suggested, though, unless you've removed the = at the start. Check that your cell formatting is not set as text. Delete the formula, set the cell to general and then reapply the formula.
 
Upvote 0
You may have accidently turned on show formulas. In the formulas tab of the ribbon check that show formulas is not clicked.
 
Upvote 0

Forum statistics

Threads
1,213,483
Messages
6,113,919
Members
448,533
Latest member
thietbibeboiwasaco

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top