To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I have two columns.
1) Employee First Name
2) Employee Last Name
I need to have a column that takes the first initial from column one and combines it with the full name from column two.
Example would be
1) Bob
2) Sagget
Outcome = bsagget
What is the best method to use here?
Thanks!
Solved! Go to Solution.
you can use
New Column =
LEFT ( TableName[Column1], 1 ) & TableName[Column2]
So simple.. thank you!