# Create an Integer Table

## Overview

This procedure generates a sample integer table. The generated table will have the columns `Amt`, `Min`, and `Max` and two predefined rows of data:

| Amt | Min | Max |
| --- | --- | --- |
| 100 | 10  | 300 |
| 200 | 5   | 500 |

This procedure will consistently generate the same table. It can be easily expanded, modified, or used as a foundation for further data processing.

## Output Concepts

| Concept | Description                                                                          |
| ------- | ------------------------------------------------------------------------------------ |
| `table` | A table with columns `Amt`, `Min`, and `Max`, and two rows of sample integer values. |

## Examples

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

```
create an integer table
```

{% endtab %}

{% tab title="Results" %}

| Amt           | Min | Max |
| ------------- | --- | --- |
| 100           | 10  | 300 |
| 200           | 5   | 500 |
| {% 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/create-a-table/create-an-integer-table.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.
