> For the complete documentation index, see [llms.txt](https://docs.inforiver.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.inforiver.com/formula-syntax/scripting-functions/setcolumnsort.md).

# SETCOLUMNSORT

Sort a specific column in ascending or descending order. Enable absolute sorting to ignore signs and sort based on magnitude.

### Syntax

```javascript
SETCOLUMNSORT(column, type, isAbsoluteSort)
```

## Arguments

column – The column to sort. Use the [COLUMNS ](/formula-syntax/identifiers/columns.md) identifier to select a specific column. Required.

type - Asc or Desc. Required.

isAbsoluteSort - Set to TRUE to enable absolute sort. Required.

### Example

```
SETCOLUMNSORT(COLUMNS.[Qtr 1 > Actuals],"Asc",TRUE)
//Sorts quarter 1 actuals in ascending order with absolute sorting enabled
```

<figure><img src="/files/NbX8apIy0fk2rRvEhgZP" alt=""><figcaption><p>SETCOLUMNSORT script</p></figcaption></figure>

Notice how the sort order changes when absolute sort is enabled and disabled.

<figure><img src="/files/DZEz4hXE9XsZgDQaCazy" alt=""><figcaption><p>Changing the sort order with scripts</p></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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/scripting-functions/setcolumnsort.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.
