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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am wondering if there is a way like SSRS clicking a word to go to a web site.
I queried some data from DB and one column named ID. Let's say it as below. In PowerBI, I want to click A then it will open http://A.COM when clicking B goes to http://B.COM. And so on.
| ID | URL |
| A | http://A.COM |
| B | http://B.COM |
| C | http://C.COM |
I do not want to show or click URL itself to achieve this. Just show ID data and hyperlink will be achieved when I click IDs.
Is there any way to do this? Thanks for your help.
Solved! Go to Solution.
To use the built-in Table visual, the URL column would have to be separate from ID. You could dynamically construct an HTML column using DAX and then add it to Power BI with the HTML Viewer custom visual.
HTML = "<td><a href='" & SampleTable[URL] & "'>" & SampleTable[ID] & "</td>"
To use the built-in Table visual, the URL column would have to be separate from ID. You could dynamically construct an HTML column using DAX and then add it to Power BI with the HTML Viewer custom visual.
HTML = "<td><a href='" & SampleTable[URL] & "'>" & SampleTable[ID] & "</td>"
But it is not clicable. when you click on it, nothing is opening.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!