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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
qgturismo
Helper I
Helper I

CREATE NEW COLUM WITH TEXT + DATA FROM OTHER COLUMN

Hello All

I'd like to create a new column with a text which I wrote and part of this text will be filled with a data from another column. In the end, this text will be a web site URL.

 

Something Like this:

NEW COLUMN = qg.tavo.la/pdf/arquivos/ + faturas[id] + .pdf
 
Where: qg.tavo.la/pdf/arquivos/ is a fixed text
Where: .pdf is a fixed text
Where: faturas[id] is a text from the column 'id' on my table
 
Should reply like this: qg.tavo.la/pdf/arquivos/58888.pdf
 
can anyone help me?
Regards
 
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@qgturismo - If this is DAX then you would use:
NEW COLUMN = "qg.tavo.la/pdf/arquivos/" & faturas[id] & ".pdf"



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

@qgturismo - If this is DAX then you would use:
NEW COLUMN = "qg.tavo.la/pdf/arquivos/" & faturas[id] & ".pdf"



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
harshnathani
Community Champion
Community Champion

Hi @qgturismo ,

 

Assuming id is a number  value.

 

NEW COLUMN = CONCATENATE( CONCATENATE( "qg.tavo.la/pdf/arquivos/",VALUE(faturas[id] )) , ".pdf")

 

 

Incase Id is a text value.

NEW COLUMN = CONCATENATE( CONCATENATE( "qg.tavo.la/pdf/arquivos/",faturas[id] ) , ".pdf")

 

 

 

 

 

Regards,
Harsh Nathani

Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

Hello @harshnathani 

Thank you very much. That's exactly what I need.

 

Regards

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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 Kudoed Authors