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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
powerbi_jenhen
Resolver II
Resolver II

How to return a specified dataset ID

Hi,

 

I have the below code where the source XML file has a single element for the desired dataset Name to return the ID for:

 

$DatasetName = $xmlElm.Workspace.Dataset.Default
$Dataset = Get-PowerBIDataset -WorkspaceId $Workspace.Id -Name $DatasetName
$DatasetId = $Dataset.ID
Write-Host "Dataset ID: "$DatasetId
 
The above code works if there is only one dataset in the workspace but when there's multiple datasets the $DatasetId variable contains the multiple dataset ids concatenated, I would have thought the "-Name" filter would have only returned the dataset id for this one named dataset? How can I change my code to do this?
 
Thanks. 
1 ACCEPTED SOLUTION
powerbi_jenhen
Resolver II
Resolver II

I needed to use Where-Object:

 

$Dataset = Get-PowerBIDataset -WorkspaceId $Workspace.Id | Where-Object {$_.name -eq $DatasetName}

View solution in original post

1 REPLY 1
powerbi_jenhen
Resolver II
Resolver II

I needed to use Where-Object:

 

$Dataset = Get-PowerBIDataset -WorkspaceId $Workspace.Id | Where-Object {$_.name -eq $DatasetName}

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

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

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.