This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
From inside the usage metrics data model, is it possible to build a URL that takes you to the actual report whose metrics are being shown?
If I get my top 5 used reports in the usage metrics, is there a way to make a URL link so I can click the link to see the actual report whose metrics are being shown?
Solved! Go to Solution.
@sasdfasdfsad It is possible to create dynamic URLs using a Measure and don't forget to format it as Web Url
1. Create a DAX Measure like below
Report_URL =
VAR WorkspaceId = SELECTEDVALUE('Table'[WorkspaceID])
VAR ReportId = SELECTEDVALUE('Table'[ReportID])
RETURN
IF(
NOT ISBLANK(WorkspaceId) && NOT ISBLANK(ReportId),
"https://app.fabric.microsoft.com/groups/"
& WorkspaceId
& "/reports/"
& ReportId
BLANK()
)
2. Format the measure as Web url and drag the measure to a table visual.
Proud to be a Super User! | |
Hey, @sasdfasdfsad ,
if you want to reuse original Usage Report semantic model, you can't directly add stuff to it, but you can create your own custom report linked to it.
In fresh Power BI Desktop connect to the model:
Then create a new measure like this:
URL =
var base = "https://app.powerbi.com/groups/"
var report_id = MAX(Reports[ReportGuid])
var group_id = MAX(Reports[OwnerGroupGuid])
var link = base & LOWER(group_id) & "/reports/" & LOWER(report_id)
return link
Set it as Text and WebUrl.
and then you can build your own report with the link as a column.
Hi @sasdfasdfsad,
Have you had a chance to review the solution we shared by @Jai-Rathinavel ,@vojtechsima ? If the issue persists, feel free to reply so we can help further.
Thank You.
Hey, @sasdfasdfsad ,
if you want to reuse original Usage Report semantic model, you can't directly add stuff to it, but you can create your own custom report linked to it.
In fresh Power BI Desktop connect to the model:
Then create a new measure like this:
URL =
var base = "https://app.powerbi.com/groups/"
var report_id = MAX(Reports[ReportGuid])
var group_id = MAX(Reports[OwnerGroupGuid])
var link = base & LOWER(group_id) & "/reports/" & LOWER(report_id)
return link
Set it as Text and WebUrl.
and then you can build your own report with the link as a column.
@sasdfasdfsad It is possible to create dynamic URLs using a Measure and don't forget to format it as Web Url
1. Create a DAX Measure like below
Report_URL =
VAR WorkspaceId = SELECTEDVALUE('Table'[WorkspaceID])
VAR ReportId = SELECTEDVALUE('Table'[ReportID])
RETURN
IF(
NOT ISBLANK(WorkspaceId) && NOT ISBLANK(ReportId),
"https://app.fabric.microsoft.com/groups/"
& WorkspaceId
& "/reports/"
& ReportId
BLANK()
)
2. Format the measure as Web url and drag the measure to a table visual.
Proud to be a Super User! | |
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 10 | |
| 10 | |
| 7 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 23 | |
| 22 | |
| 21 | |
| 20 |