API Reference
Cmdlet
Add-OfficeExcelConditionalDataBar
Adds a data bar conditional format to a range.
Remarks
Adds a data bar conditional format to a range.
Examples
Example 1: Add blue data bars.
PS>
ExcelSheet 'Data' { Add-OfficeExcelConditionalDataBar -Range 'D2:D50' -Color '#4F81BD' }
Applies data bars to column D.
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-OfficeExcelConditionalDataBar -Color <String> [-HeaderName <String>] [-HeaderRow <Int32>] [-IncludeHeader] [-PassThru] [-PivotTableName <String>] [-PivotWholeTable] [-Range <String>] [-TableName <String>] [<CommonParameters>]#Parameter set:
ContextParameters
- Color String
- Bar color in hex (#RRGGBB or FFRRGGBB).
- HeaderName String
- Header or table column name used to resolve the target range.
- HeaderRow Int32
- Worksheet header row used when resolving HeaderName without a table. Use 0 for the first row of the used range.
- IncludeHeader SwitchParameter
- Include the header cell in the resolved range.
- PassThru SwitchParameter
- Emit the range after applying the format.
- PivotTableName String
- Pivot table name used to resolve the target range.
- PivotWholeTable SwitchParameter
- Use the full pivot output range instead of the default data body range.
- Range String
- A1 range to format.
- TableName String
- Optional table name for header-based range resolution.
Add-OfficeExcelConditionalDataBar -Color <String> -Document <ExcelDocument> [-HeaderName <String>] [-HeaderRow <Int32>] [-IncludeHeader] [-PassThru] [-PivotTableName <String>] [-PivotWholeTable] [-Range <String>] [-Sheet <String>] [-SheetIndex <Nullable`1>] [-TableName <String>] [<CommonParameters>]#Parameter set:
DocumentParameters
- Color String
- Bar color in hex (#RRGGBB or FFRRGGBB).
- Document ExcelDocument
- Workbook to operate on outside the DSL context.
- HeaderName String
- Header or table column name used to resolve the target range.
- HeaderRow Int32
- Worksheet header row used when resolving HeaderName without a table. Use 0 for the first row of the used range.
- IncludeHeader SwitchParameter
- Include the header cell in the resolved range.
- PassThru SwitchParameter
- Emit the range after applying the format.
- PivotTableName String
- Pivot table name used to resolve the target range.
- PivotWholeTable SwitchParameter
- Use the full pivot output range instead of the default data body range.
- Range String
- A1 range to format.
- Sheet String
- Worksheet name when using Document.
- SheetIndex Nullable`1
- Worksheet index (0-based) when using Document.
- TableName String
- Optional table name for header-based range resolution.