March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have a column named FullName in which I apply [FirstName] & "" & [LastName] to make full name. Now I need to split a space between first name and last name in FullName column. As you can see below each full name has no space.
Is there a query formula I can use to make a space, e.g Terry Duffy, Rob Walters?
Solved! Go to Solution.
Hey,
using Dax, just use this formula to create a calculated column
Fullname DAX = 'Table1'[Firstname] & " " & 'Table1'[Lastname]
Using the query editor
Hey,
using Dax, just use this formula to create a calculated column
Fullname DAX = 'Table1'[Firstname] & " " & 'Table1'[Lastname]
Using the query editor
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
90 | |
89 | |
85 | |
73 | |
49 |
User | Count |
---|---|
167 | |
149 | |
93 | |
72 | |
58 |