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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
prasadpatsa
Helper I
Helper I

Concatenating STRING and NUMBER in a new calculated field

Hi All,

 

I am new to Power BI from Tableau. I have a very basic question.

 

I am trying to concatenate an 'ACCOUNT NUMBER' which is a number to its 'Description'  a string. The new field is new column. For example:

 

ACCOUNT NUMBER = 124768009

DESCRIPTION = Allocations from Sites

 

My new column 'ACCOUNT DETAILS'  should be '124768009 - Allocations from Sites'. 

 

Please help me acheive this. Thanks a ton.

 

Regards

DP

2 ACCEPTED SOLUTIONS
Pragati11
Super User
Super User

Hi @prasadpatsa ,

 

Use the following DAX expression to create a new column:

result = CONCATENATE('TableName'[ACCOUNT NUMBER], CONCATENATE(" - ", 'TableName'[Description]))
 
Replace TableName with your table's name.
 
If this helps and resolves the issue, appreciate a Kudos and mark it as a Solution! 🙂
 
Thanks,
Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

View solution in original post

FrankAT
Community Champion
Community Champion

Hi @prasadpatsa ,

follow the figure:

 

02-04-_2020_16-12-47.png

 Regards FrankAT

View solution in original post

5 REPLIES 5
dethompson97
Resolver III
Resolver III

You can do this in Power Query by doing the following:

 

Note you will have to change the names of the columns to your names.

 

Power Query 2.jpg

 

This way it will be created when you load the data.

 

Thanks!

Dawn

 

 

FrankAT
Community Champion
Community Champion

Hi @prasadpatsa ,

follow the figure:

 

02-04-_2020_16-12-47.png

 Regards FrankAT

Thanks Frank. This also worked.

Pragati11
Super User
Super User

Hi @prasadpatsa ,

 

Use the following DAX expression to create a new column:

result = CONCATENATE('TableName'[ACCOUNT NUMBER], CONCATENATE(" - ", 'TableName'[Description]))
 
Replace TableName with your table's name.
 
If this helps and resolves the issue, appreciate a Kudos and mark it as a Solution! 🙂
 
Thanks,
Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Kudos

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.