Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello everyone!
Is that possible to select these data from PBI service workspace in table format using PBI?
Solved! Go to Solution.
Hi @serog22
If you are admin, you can check all the tenant informations as described here:
View workspaces - Power BI | Microsoft Learn
You can also configure and use / share Logs as described here:
Hi @serog22
You can do this by using Power BI Cmdlets. Open PowerShell with admin rights and run:
Install-Module -Name MicrosoftPowerBIMgmt -Force -AllowClobber
Authenticate:
Connect-PowerBIServiceAccount
Get a list of workspaces:
Get-PowerBIWorkspace -Scope Organization
Then you can get a list of Reports, Datasets and Dashboard running respectively:
Get-PowerBIReport -WorkspaceId <WorkspaceId> -Scope Organization
Get-PowerBIDataset -WorkspaceId <WorkspaceId> -Scope Organization
Get-PowerBIDashboard -WorkspaceId <WorkspaceId> -Scope Organization
(replace the Workspace ID by your own)
Thanks, but I want to select this data like a table. In Power query
Hi @serog22
If you are admin, you can check all the tenant informations as described here:
View workspaces - Power BI | Microsoft Learn
You can also configure and use / share Logs as described here: