Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I am trying to concatenante two columns in a table, with an underscore between them, without using merge(because I wish to retain the original two columns as well)
I've tried the CONCATENANTE command, AND "addColumn" to no avail, like below.
"Full Name MYNEWCOLUMNNAME= CONCATENATE(dbo_MYTABLENAME[MYFIELD#1]
&"_",dbo_MYTABLENAME[MYFIELD#2])"
and
= Table.AddColumn(dbo_MYTABLENAME, "MYNEWCOLUMNNAME", each Table.AddColumn(dbo_dbo_MYTABLENAME,
"MYFIELD#1", each [JAXLAWSONREQUISITIONNO]+"_"+[MYFIELD#2]))
Thoughts?
Thanks much,
Richj
Solved! Go to Solution.
Insert a custom column from Add Column menu and paste the below in the box
[#"MYFIELD#1"] & "_" & [#"MYFIELD#2"]
Insert a custom column from Add Column menu and paste the below in the box
[#"MYFIELD#1"] & "_" & [#"MYFIELD#2"]
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 |
---|---|
13 | |
13 | |
10 | |
8 | |
7 |
User | Count |
---|---|
17 | |
10 | |
7 | |
7 | |
6 |