Forum Discussion
Marcegon
Helper II
2 years agoI need help with a concatenate formula
I am using the following formula to concatenate first and last name. However, it does not work when the last name starts with a slash (/). It gives me a null cell. =[first name]&" "&[last nam...
- 2 years ago
Thank you! I replaced "null" (since the first name does not have a value/text) with space and it worked.
ThxAlot
Super User
2 years ago=([first name] ?? "") & " " & ([last name] ?? "")