The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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:
Solved! Go to Solution.
@qgturismo - If this is DAX then you would use:
NEW COLUMN = "qg.tavo.la/pdf/arquivos/" & faturas[id] & ".pdf"
@qgturismo - If this is DAX then you would use:
NEW COLUMN = "qg.tavo.la/pdf/arquivos/" & faturas[id] & ".pdf"
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)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
107 | |
79 | |
71 | |
48 | |
39 |
User | Count |
---|---|
136 | |
108 | |
70 | |
64 | |
57 |