API Reference
Cmdlet
Add-OfficeExcelReportKpiRow
Adds a KPI row to the current Excel report sheet.
Remarks
Adds a KPI row to the current Excel report sheet.
Examples
Add three KPI values to a summary sheet.
PS>
New-OfficeExcel -Path .\Operations.xlsx {
Add-OfficeExcelReportSheet -Name Summary {
Add-OfficeExcelReportKpiRow -InputObject @{ Revenue = 125000; Incidents = 3; Status = 'Ready' } -PerRow 3
}
}
Renders PowerShell key/value data as a KPI row through the OfficeIMO sheet composer.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
Add-OfficeExcelReportKpiRow -InputObject <Object> [-LabelFillColor <String>] [-PerRow <Int32>] [<CommonParameters>]#Parameter set:
All Parameter SetsParameters
- InputObject Object
- Hashtable or objects with Label/Value, Key/Value, Name/Value, or Title/Value properties.
- LabelFillColor String
- Optional fill color for KPI labels.
- PerRow Int32
- Number of KPI cards per rendered row.
Outputs
System.Object