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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.