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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
AndreiSfarc
Frequent Visitor

Embedded Report

Hi all,

The company that I work has an embedded to web Power BI Report for which they forgot the workspace where is stored.
Is there a way to find out to which Power BI Workspace it belongs? 

Thank you!

1 REPLY 1
Anonymous
Not applicable

Hi @AndreiSfarc ,

 

You can use the Power BI PowerShell cmdlets to find the workspace where the embedded report is stored. First, you need to make sure you have the Power BI PowerShell module installed. If you don't have it, you can install it using the following command:


Install-Module -Name MicrosoftPowerBIMgmt

Next, connect to the Power BI service account:


powershell
Connect-PowerBIServiceAccount

Now, you can loop through all the workspaces in your organization and check for the report. Replace with the name of the embedded report you're looking for:YourReportName


$reportName = "YourReportName"
$workspaces = Get-PowerBIWorkspace -Scope Organization -All

foreach ($workspace in $workspaces) {
$reports = Get-PowerBIReport -WorkspaceId $workspace.Id -Scope Organization
$foundReport = $reports | Where-Object { $_.Name -eq $reportName }
if ($foundReport) {
Write-Host "Report found in workspace: $($workspace.Name)"
break
}
}

This script will loop through all the workspaces in your organization and print the name of the workspace where the report is found. If the report is not found in any workspace, it won't print anything.

 

Best Regards,

Neeko Tang

If this post  helps, then please consider Accept it as the solution  to help the other members find it more quickly. 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Kudoed Authors