Get Dataset Cell Activity
The Get Dataset Cell activity enables the retrieval of specific data points from an existing dataset using row and column coordinates. This activity allows users to extract information and store it in a designated variable for use in subsequent workflow steps.
| Field | Description | Requirement |
|---|---|---|
| Dataset name | The reference name of the target dataset. | Required |
| Row | The zero-based index of the row to be accessed. | Required |
| Columns | The name or zero-based index of the column to be accessed. | Required |
| Result variable name | The name of the variable that will store the retrieved value. | Required |
Action Types & Examples
Retrieve by Index
- Format: integer
- Example Result: "0"
Retrieve by Column Name
- Format: string
- Example Result: "Name"
Implementation Examples
Field Setup - Dataset name: newDS - Result variable name: getNameResult
Execution Parameters - Row: 0 - Columns: Name
Technical Notes
Row and column indices are zero-based, meaning the first item is represented by 0. Ensure the dataset name matches the reference name defined during the dataset creation or loading process.