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
Lagoona23
Frequent Visitor

Concatenate number column and text column into new column

I am trying to concatenate a number column and a text column into a new column - so for example Column [Year] 2019 will be concatenated with Column [FiscalMonth] Jan to make a new column called CustomNew that contains 2019Jan. Year column is the number and FiscalMonth is the text column.

 

I have tried a number of things but always end up with an error in the new column.

 

I am currently trying Add Column -> Custom Column which produces this Power Query -

= Table.AddColumn(#"Changed Type1", "CustomNew", each Number.ToText[Year] & [FiscalMonth]).

 

I end up getting the error -

Expression.Error: We cannot apply field access to the type Function.
Details:
Value=[Function]
Key=Year

 

Does anyone have any ideas as to why I'm getting this error or any other way of doing this?

 

Many thanks.

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Lagoona23 

 

Please try add brakets for year column.

= Table.AddColumn(#"Changed Type1", "CustomNew", each Number.ToText([Year]) & [FiscalMonth]).

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
v-deddai1-msft
Community Support
Community Support

Hi @Lagoona23 ,

 

Please try the following M query:

 

= Table.AddColumn(#"Changed Type", "Custom", each Text.Combine({Text.From([Year], "en-US"), [FiscalMonth]}), type text)

 

 

Capture1.PNG

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Best Regards,

Dedmon Dai

ryan_mayu
Super User
Super User

@Lagoona23 

 

Please try add brakets for year column.

= Table.AddColumn(#"Changed Type1", "CustomNew", each Number.ToText([Year]) & [FiscalMonth]).

1.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @ryan_mayu that solution worked for me thank you very much.

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.