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
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
Memorable Member
Memorable Member

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
Memorable Member
Memorable Member

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
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.