Project

PSWriteOffice

PowerShell document automation across Word, Excel, PowerPoint, PDF, Reader, Confluence, Visio, and open text formats.

Stars 159
Forks 14
PowerShell Gallery downloads 158,661
Release v3.0.5
Language: C# Updated: 2026-09-03

API Reference

Cmdlet

Add-OfficeExcelReportParagraph

Aliases: ExcelReportParagraph
Namespace PSWriteOffice
Aliases
ExcelReportParagraph
Inputs
None

Adds a paragraph line to the current Excel report sheet.

Remarks

Adds a paragraph line to the current Excel report sheet.

Examples

Authored help example

Add narrative text below a title block.

PS>


New-OfficeExcel -Path .\Operations.xlsx {
                Add-OfficeExcelReportSheet -Name Summary {
                    Add-OfficeExcelReportTitle -Title 'Operational Summary'
                    Add-OfficeExcelReportParagraph -Text 'This workbook was generated from the validated source data.'
                }
            }
        

Adds prose to an OfficeIMO-composed Excel report sheet.

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-OfficeExcelReportParagraph [-PassThru] -Text <String> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

PassThru SwitchParameter optionalposition: namedpipeline: False
Emit the object created or changed by the command.
Text String requiredposition: 0pipeline: False
Paragraph text.