# 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
```
