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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
erhan_79
Post Prodigy
Post Prodigy

Query Formula Help

Hi there ;

 

I have a  table with below columns on power bi 

 

Doc numberMaterialItem No
567MATA10

 

i need to merge this 3 column as below , and want to create a new column whichs will be called " new code" 

 

New code
567MATA10

 

thnsk in advance for your supports 

1 ACCEPTED SOLUTION

Hi @erhan_79 ,

 

I think you didn't read my solution properly.

My solutions was purely based on DAX expression not query editor m-code.

 

In query editor try something like this:

new code = Number.ToText([Doc number]) & [Material] & Number.ToText([Item No])

 

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

6 REPLIES 6
amitchandak
Super User
Super User

@erhan_79 , Try as a new colum

new code = [Doc number]&[Material]&[Item No]

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

hi @amitchandak 

 

i tried but i got an error as below Capture4.JPG

Pragati11
Super User
Super User

Hi @erhan_79 ,

 

You can create a calcukated column using DAX expression as follows:

new code = CONCATENATE([Doc number], CONCATENATE([Material], [Item No]))

 

you will get the required result.

 

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

hi @Pragati11  ,

 

i tried your formula but i got an error as below Capture3.JPG

Hi @erhan_79 ,

 

I think you didn't read my solution properly.

My solutions was purely based on DAX expression not query editor m-code.

 

In query editor try something like this:

new code = Number.ToText([Doc number]) & [Material] & Number.ToText([Item No])

 

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

thank you @Pragati11  

 

now everything is ok 

 

thanks 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors