Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
chintu9494
Frequent Visitor

How to add Hyper URL link of Different SharePoint sites to Power Bi table item??

I have a project sharepoint list that is collection of all different project sharepoint sites that i have. I have table in power bi with those project names, i want to be able to add the different project SharePoint site links as Hyperlink in Power BI dashboard so when I click on that Hyperlink it will open the project sharepoint site

 

Below given are sample URL of project sites, the one highlighted in blue text is the dynamic item that keeps changing

 

https://SharePoint Site/Project Name/Home.aspx

https://sharepoint.com/sites/Project_portal/pmo-mgdwrk-XpertDocProofofConcept/SitePages/Home.aspx

https://sharepoint.com/sites/Project_portal/pmo-mgdwrk-DocumentCentre/SitePages/Home.aspx

https://sharepoint.com/sites/Project_portal/pmo-prj-JSAngularUpgrade/SitePages/Home.aspx

 

The table in Power BI looks like this where when i click on project name it should open the above project sharepoint sites

 

Project Name
XpertDoc Proof of Concept
Document Center
JS Angular Upgrade

 

 

Thank you

Chintu

 

 

1 REPLY 1
vicky_
Super User
Super User

First, you'll need to add another column to get the project site url part, such as:

Project NameDynamic URL Part
XpertDoc Proof of Conceptpmo-mgdwrk-XpertDocProofofConcept
Document Centerpmo-mgdwrk-DocumentCenter
JS Angular Upgradepmo-prj-JSAngularUpgrade


You can use a DAX formula to give you the correct link:

 

URL = "https://sharepoint.com/sites/Project_portal/" & SELECTEDVALUE(Table[Dynamic URL Part] & "/SitePages/Home.aspx"

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors