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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
smitpau
Helper I
Helper I

Custom Column - Concatenate numbers using & operation

Hi,

 

I've tried creating a custom column to concatenate 00 to the end of the number based on a condition.

 

It seems Power Query doesn't want to do this.

 

Is there a way to do this?

 

The specific code I'm using is below (problem bit in bold)

 

Table.AddColumn(#"Added Custom1", "NC v2", each if [CC] = "HO" then [NC] & 00 else [NC])

 

The error message is:

 

[Expression.Error] We cannot apply operator & to types Number and Number.

 

Thanks

1 ACCEPTED SOLUTION
lkalawski
Super User
Super User

Hi @smitpau 

Based on what you provided, I conclude that the NC column is numeric.
For this reason, Power BI shows you the error that you cannot use the & character to connect two numbers.

In your case, the best solution is to multiply * 100 (instead of adding & and 00).

Try this:

Table.AddColumn(#"Added Custom1", "NC v2", each if [CC] = "HO" then [NC] * 100 else [NC])

 

_______________
If I helped, please accept the solution and give kudos! 😀

View solution in original post

2 REPLIES 2
lkalawski
Super User
Super User

Hi @smitpau 

Based on what you provided, I conclude that the NC column is numeric.
For this reason, Power BI shows you the error that you cannot use the & character to connect two numbers.

In your case, the best solution is to multiply * 100 (instead of adding & and 00).

Try this:

Table.AddColumn(#"Added Custom1", "NC v2", each if [CC] = "HO" then [NC] * 100 else [NC])

 

_______________
If I helped, please accept the solution and give kudos! 😀

Thanks makes sense (converted it to text in the end)

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors