Any

This Flow Script tutorial explains how to use the Any function with syntax and examples.

Description

The Any function returns a truth (Boolean) value indicating whether the table has any rows.

Syntax

‌The syntax for the Any function is:

Any(table)

Parameters

table - the table to check for rows.

Returns

‌The Any function returns True or False.

Example

Let's look at some Any function examples and explore how to use the Any function.‌

Any(colors)
Result: True

Any([col: "A"] & [col: "B"])
Result: True

Last updated