Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hey
I have a sharepoint list that has hyperlinks, these field use both the hyperlink and the alternative text fields.
Can i get both of these into power bi? Currently i only get the url itself.
thanks!
Solved! Go to Solution.
Hello @Frode1000,
Here's how you might adjust the M code in the Advanced Editor to extract both pieces of information:
let
Source = SharePoint.Tables("https://yoursharepointsite", [ApiVersion = 15]),
YourList = Source{[Id="YourListID"]}[Items],
ExpandedHyperlink = Table.TransformColumns(YourList, {"YourHyperlinkColumn", each {Record.Field(_, "Url"), Record.Field(_, "Description")}, {"URL", "Description"}})
in
ExpandedHyperlink
Hello @Frode1000,
Here's how you might adjust the M code in the Advanced Editor to extract both pieces of information:
let
Source = SharePoint.Tables("https://yoursharepointsite", [ApiVersion = 15]),
YourList = Source{[Id="YourListID"]}[Items],
ExpandedHyperlink = Table.TransformColumns(YourList, {"YourHyperlinkColumn", each {Record.Field(_, "Url"), Record.Field(_, "Description")}, {"URL", "Description"}})
in
ExpandedHyperlink
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 45 | |
| 38 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 87 | |
| 68 | |
| 38 | |
| 29 | |
| 26 |