This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi All
I have a single table.
I want to merge 3 columns and name as first column.
First column has a datatpe Text .
Second column Whole Number.
Third column Whole number.
First column has single Alphabets.
sample data
column 1: A
column 2: 007
column 3: 911
I want to dispaly as
A-007-911
Thanks in advance.
Solved! Go to Solution.
I did. Thanks for your help. I used mege feature of Power Bi. I highlighted 3 columns and used merege coulmns featur.
I did. Thanks for your help. I used mege feature of Power Bi. I highlighted 3 columns and used merege coulmns featur.
If columns 2 and 3 are numeric types, then you'll need to convert to text before combining and pad with zeros.
Try a custom column like this:
[Column1] & "-" & Text.PadStart(Text.From([Column2]), 3, "0")
& "-" & Text.PadStart(Text.From([Column3]), 3, "0")
Thanks
I changed dataype to text for column 2 & column 3.
Did you write a measure above?
I have multiple fields.
No. This is a calculated column using the M language in the query editor.
Measures use DAX.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 26 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 49 | |
| 32 | |
| 27 | |
| 22 |