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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
JadhavVarsha_13
Resolver II
Resolver II

@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
JadhavVarsha_13
Resolver II
Resolver II

@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
Super User
Super User

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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