# Any transform action

## Use case

You are reviewing a list of users and you need to determine if any of the users are enabled. The previous list has been mapped using the map transform action to the attribute `enabled` , providing a list of boolean True/False values to check against.

## Overview

<figure><img src="https://1835401289-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FAQQ1EHVcEsGKBPVHmiav%2Fuploads%2FhgW8ZnhJo0KnR3KomWOF%2FScreenshot%202025-03-28%20at%2011.25.51%E2%80%AFAM.png?alt=media&#x26;token=f6df7cb5-0b6d-4e12-a5a1-1ad7a8901f3a" alt=""><figcaption></figcaption></figure>

This transform action will look at a list of boolean values and return true if any of the elements are true.

***

## Parameters

<table><thead><tr><th width="217">Parameter</th><th width="417.3333333333333">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>List</td><td>List of boolean values to check against.</td><td>true</td></tr></tbody></table>

## Usage

<details>

<summary>Example 1: Confirm Any Items In List Are True</summary>

**List to Check** (input):

```
{{ [true, false, true, true] }}
```

</details>

## Results output

This transform will output a boolean value.

Example output from Example 1:

```json
True
```


---

# 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.rewst.help/documentation/automations/actions-in-rewst/transform-actions/any-transform-action.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.
