< Back

New-PowerBIDashboard

Sat Jan 18, 2020 4:15 pm

NAME New-PowerBIDashboard



SYNOPSIS

Creates a new empty Power BI dashboard.





SYNTAX

New-PowerBIDashboard -Name <String> -Workspace <Workspace> [<CommonParameters>]



New-PowerBIDashboard -Name <String> -WorkspaceId <Guid> [<CommonParameters>]





DESCRIPTION

Creates a new empty dashboard in "My Workspace" or in a specified workspace.





PARAMETERS

-Name <String>

Name of the dashboard.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Workspace <Workspace>

Workspace object, as returned by the Get-PowerBIWorkspace cmdlet, in which the dashboard should be created.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-WorkspaceId <Guid>

ID of the workspace in which the dashboard should be created.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None







OUTPUTS

Microsoft.PowerBI.Common.Api.Reports.Dashboard







NOTES









-------------------------- Example 1 --------------------------



PS C:\\> New-PowerBIDashboard -Name "New Dashboard"



Creates a new dashboard called "New Dashboard" in "My Workspace".

-------------------------- Example 2 --------------------------



PS C:\\> New-PowerBIDashboard -Name "New Dashboard" -WorkspaceId 084d15de-4c96-4a66-97b4-c60914a0973c



Creates a new dashboard called "New Dashboard" in an existing workspace with ID

"084d15de-4c96-4a66-97b4-c60914a0973c".



RELATED LINKS