Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
bjha1
Regular Visitor

concatenate; Expression.Error: We cannot apply operator & to types Number and Text.

Trying to concatenate in power query below coulmns to populate a key but getting error message. Kindly help.

Emp Code    Cost Center    Department

12345           BLR South      Procurement

 

Desired result: 12345 BLR South Procurement

1 ACCEPTED SOLUTION

@bjha1 We cannot apply operator & to types Text and Number directly.

you can use  = Table.AddColumn(#"Changed Type1", "Custom", each Text.From([Emp Code]) &[#"Cost Center "]&[Department])

 

let me know if this helps !

View solution in original post

2 REPLIES 2

@bjha1 We cannot apply operator & to types Text and Number directly.

you can use  = Table.AddColumn(#"Changed Type1", "Custom", each Text.From([Emp Code]) &[#"Cost Center "]&[Department])

 

let me know if this helps !

DOLEARY85
Resident Rockstar
Resident Rockstar

Hi, 

 

it's probably due to one of your fields being a number, try:

 

Number.ToText([Emp Code]) & " " & [Cost Center] & " " & [Department]

 

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors