API Reference
Function
New-TableReplace
Replaces values in a specified field of a table.
Remarks
This function replaces values in a specified field of a table with the provided replacements.
Examples
EXAMPLE 1
New-TableReplace -FieldName "Status" -Replacements @("Active", "Inactive")
Description: Replaces values in the "Status" field with "Active" or "Inactive".
EXAMPLE 2
New-TableReplace -FieldName "Priority" -Replacements @("High", "Medium", "Low")
Description: Replaces values in the "Priority" field with "High", "Medium", or "Low".
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
New-TableReplace [-FieldName <String>] [-Replacements <String[]>] [<CommonParameters>]
#
Parameter set:
All Parameter SetsParameters
- FieldName String
- The name of the field in the table where replacements will be made.
- Replacements String[]
- An array of strings containing the values to replace in the specified field.