Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a table with first names and last names I want to create a calculated table with a full name column. can that be done in one shot without creating two tables first?
Thanks
Solved! Go to Solution.
@Markzolotoy , Try like. I have not tested this
New Table =
addcolumns(summarize(Table, [First Name], [Last Name]), "Full Name" , [First Name] & " " & [Last Name])
Hi, @Markzolotoy
Please check the below.
new table =
SUMMARIZE (
ADDCOLUMNS (
'Table',
"full name",
'Table'[firstname] & " " & 'Table'[lastname]
),
[full name]
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
HI @Markzolotoy,
You can try to use the following formula if it was suitable for your requirement.
NewTable =
SELECTCOLUMNS (
ALL ( Table[First Name], Table[Last Name] ),
"Full",
[First Name] & " " & [Last Name]
)
Regards,
Xiaoxin Sheng
HI @Markzolotoy,
You can try to use the following formula if it was suitable for your requirement.
NewTable =
SELECTCOLUMNS (
ALL ( Table[First Name], Table[Last Name] ),
"Full",
[First Name] & " " & [Last Name]
)
Regards,
Xiaoxin Sheng
Hi, @Markzolotoy
Please check the below.
new table =
SUMMARIZE (
ADDCOLUMNS (
'Table',
"full name",
'Table'[firstname] & " " & 'Table'[lastname]
),
[full name]
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
@Markzolotoy , Try like. I have not tested this
New Table =
addcolumns(summarize(Table, [First Name], [Last Name]), "Full Name" , [First Name] & " " & [Last Name])
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |