Forum Discussion
Riaon
8 years agoMicrosoft Employee
Need Hyperlink for a table column
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 w...
- 8 years ago
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>"
deldersveld
8 years agoResident Rockstar
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>"
- rajendrav20167 years agoFrequent Visitor
But it is not clicable. when you click on it, nothing is opening.