# All transform action

## Use case

You are reviewing a list of users, and want to determine if all 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%2FEZ5J91bHMdFmXejhvpyy%2FScreenshot%202025-03-28%20at%2011.25.25%E2%80%AFAM.png?alt=media&#x26;token=d7797f2f-7ce6-4081-a1ee-aa9907b6fb92" alt=""><figcaption></figcaption></figure>

This transform action will look at a list of boolean values and return true if all of the elements in the list 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 All 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
False
```
