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
Anonymous
Not applicable

concatenate a numeric column with text power query

I want to make a new column in power query, and want to contanate a numeric column with extra text. I get an error when I try:

 

= Table.AddColumn(#"Added Custom1", "Custom.1", each Text.Combine({"Status", [ActivityID]}," " ))

 

or

 

= Table.AddColumn(#"Added Custom1", "Custom.1", each Text.Combine({"Status", Text.From[ActivityID]}," " ))

 

or

 

= Table.AddColumn(#"Added Custom1", "Custom.1", each Text.Combine({"Status", Number.ToText[ActivityID]}," " ))

 

I am open to suggestions!

 

My current work around is to change the data type to text, but this will cause issues later on

4 REPLIES 4
v-lili6-msft
Community Support
Community Support

hi, @Anonymous

For two text column, you could use & to concatenate them.

In your case, you want to concatenate a numeric column with text, so use Number.ToText Function add aformula as Interkoubess

And if you want to add a space between two field? if so you could try this

Table.AddColumn(#"Added Custom", "Custom.1", each [Status]&" "&Number.ToText([ActivityID]))

2.JPG

Result:

3.JPG

 

If it is not your case, please share some data sample and expected output. Do mask sensitive data before uploading.


Best Regards,
Lin 

 
Community Support Team _ Lin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Interkoubess
Solution Sage
Solution Sage

Hi @Anonymous,

 

Try this :

 

Table.AddColumn(#"Added Custom1", "Custom.1", each [Status] & Number.ToText([ActivityID]))

I suppose [Status] is a column.

 

Ninter

 

Anonymous
Not applicable

Thanks for the reply. Actually, "Status" is free text. The pivoted columns are all numeric, and after pivoting becomes fields called 1,2,3...

It also works with free text.

 

Ninter

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.