# SMALL

The **SMALL** function returns the nth smallest number from a list of values by identifying the value at the specified rank when the numbers are arranged from lowest to highest. It is useful for finding bottom or ranked values within a dataset.

### Syntax

```javascript
SMALL(list,index)
```

### Arguments

index - The index specifies which smallest value to return—for example, 1 returns the smallest, 2 returns the second-smallest, and so on (Required).

list - The list of numbers to iterate through (Required).

### Example

```javascript
SMALL([MEASURE 1,MEASURE 2,MEASURE 3],1)
```

In the example below, the *SMALL* measure is created using the **SMALL** function, which returns the nth smallest value from the measures *MEASURE 1, MEASURE 2* and *MEASURE 3*.

<figure><img src="/files/xjE7SZrcBibZ15XnOUPI" alt=""><figcaption><p>Applying SMALL Function</p></figcaption></figure>


---

# 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.inforiver.com/formula-syntax/math-functions/small.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.
