# Get a Column's Values

### Overview

This procedure retrieves a list of values from a specified column in a table. This can be helpful for tasks such as generating summaries, performing calculations, or feeding specific values into another part of a workflow.

{% hint style="info" %}
Note: You can retrieve up to a maximum of 1,000 column values.
{% endhint %}

### Input Concepts

| Concept       | Type   | Description                         | Default    | Required |
| ------------- | ------ | ----------------------------------- | ---------- | -------- |
| `column name` | string | The name of the column to retrieve. | No default | Yes      |

### Output Concepts

<table><thead><tr><th width="201.71484375">Concept</th><th>Description</th></tr></thead><tbody><tr><td><code>list</code></td><td>The specified column from the table as a list of values.</td></tr></tbody></table>

### Examples

#### 1. Get Column Values from a Sample Table

{% tabs %}
{% tab title="Automation" %}

```
create a sample table
get the sample table's column's values where
  the column name is "City"
```

{% endtab %}

{% tab title="Results" %}
the values

`San Francisco`\
`San Jose`\
`San Francisco`
{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kognitos.com/legacy/legacy-experience/automation-areas/tables-v2/get-a-column/get-a-columns-values.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
