Forum Discussion
amsrivas28
Feb 10, 2021Copper Contributor
Iteration on Powershell
Hi Folks!! Below is the requirement which i need to implement. This is in context to Power BI CMDLET in PowerShell. Step :1 -> Get-PowerBIWorkspace <This will give all the w...
farismalaeb
Feb 10, 2021Iron Contributor
You need to store the result of Get-PowerBIWorkSpace into variable and the use the variable in Step to
so it will be like this
$Result=Get-PowerBIWorkspace
Get-PowerBIDataFlow -WorkSpaceID $ResultThis should help.
and also it might depend on the output of the first line
-----
If this answer helpful, please click on best Respone