title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Parameters.Item method (Excel) |
vbaxl10.chm525075 |
|
|
66db6a11-b0e3-4417-0589-b0085f67c77a |
05/03/2019 |
medium |
Returns a single object from a collection.
expression.Item (Index)
expression A variable that represents a Parameters object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Index | Required | Variant | The name or index number for the object. |
A Parameter object contained by the collection.
The text name of the object is the value of the Name and Value properties.
This example modifies the parameter prompt string.
With Worksheets(1).QueryTables(1).Parameters.Item(1)
.SetParam xlPrompt, "Please " & .PromptString
End With
[!includeSupport and feedback]