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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors