Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi, i'm new to PowerBI.
I'm trying to create a new column based on my excisting column "ID"
In this new column I want to add a hyperlink + the ID added to this.
i.e https://welcome/{id}
I thought this was possible with custom column, but I can't seem to figure it out.
Solved! Go to Solution.
@Anonymous Try this as a "Custom Column" in "Power Query Editor"
=Text.Combine({"https://welcome/{", Text.From([ID], "en-GB"), "}"})
Proud to be a PBI Community Champion
@Anonymous Try this as a "Custom Column" in "Power Query Editor"
=Text.Combine({"https://welcome/{", Text.From([ID], "en-GB"), "}"})
Proud to be a PBI Community Champion
What is "en-GB"
=Text.Combine({"https://welcome/{", Text.From([ID], "en-GB"), "}"})
Thanks a lot this works for me!