Count

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

Description

The Count function returns the number of rows in a table.

Syntax

‌The syntax for the Count function is:

Count(table)

Parameters

table - the table for which the rows are to be counted.

Returns

‌The Count function returns an integer.

Example

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

count(colors)
Result: 4

Count([col: "A"] & [col: "B"])
Result: 2

Last updated