Forum Discussion
Excel formula
- Aug 01, 2022
You don't have to use any of the new features of Office 365 Excel. Old functions work just fine. And for this, you do not even need to use an old function (CONCAT). Simply enter the following into D2:
=B2 & " " & C2 & " " & A2
Of course, things get interesting if you want to handle the case where there is no middle name. At a minimum:
=B2 & " " & IF(C2="", "", C2 & " " ) & A2
And then there are all sorts of other special cases to handle.
You don't have to use any of the new features of Office 365 Excel. Old functions work just fine. And for this, you do not even need to use an old function (CONCAT). Simply enter the following into D2:
=B2 & " " & C2 & " " & A2
Of course, things get interesting if you want to handle the case where there is no middle name. At a minimum:
=B2 & " " & IF(C2="", "", C2 & " " ) & A2
And then there are all sorts of other special cases to handle.
- Dennis2321Aug 02, 2022Copper ContributorThank you. I had forgotten about the use of the & sign. I tried looking up files from 10 years ago but couldn't find any where I had previously merged names together. It's amazing what you forget when you don't do something for a long time.
Dennis