mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-15 15:53:32 +00:00
moved CmdletBinding after help comment. Examples were not displaying
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
function Join-Worksheet {
|
function Join-Worksheet {
|
||||||
[CmdletBinding(DefaultParameterSetName = 'Default')]
|
|
||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Combines data on all the sheets in an Excel worksheet onto a single sheet.
|
Combines data on all the sheets in an Excel worksheet onto a single sheet.
|
||||||
@@ -34,6 +33,8 @@
|
|||||||
Specifying -LabelBlocks causes each sheet's name to become a title on the summary page above the copied data.
|
Specifying -LabelBlocks causes each sheet's name to become a title on the summary page above the copied data.
|
||||||
The source data is hidden, a title is addded in 22 point boldface and the columns are sized to fit the data.
|
The source data is hidden, a title is addded in 22 point boldface and the columns are sized to fit the data.
|
||||||
#>
|
#>
|
||||||
|
|
||||||
|
[CmdletBinding(DefaultParameterSetName = 'Default')]
|
||||||
param (
|
param (
|
||||||
# Path to a new or existing .XLSX file.
|
# Path to a new or existing .XLSX file.
|
||||||
[Parameter(ParameterSetName = "Default", Position = 0)]
|
[Parameter(ParameterSetName = "Default", Position = 0)]
|
||||||
|
|||||||
Reference in New Issue
Block a user