
Table Operations
Actions
Action components allow you to perform operations on the app.

Add Column
Adds a new column to the table with default or Empty values.

Add Row
Adds a row to the table.

Count Rows
Gets the number of rows in a table.

Create Table
Creates an empty table with given number of rows and columns.

Delete Column
Deletes a column from the table.

Filter
Filters a table based on given query.

Find
Finds the first row in a table based on given query.

Get Cell
Gets a cell from a table at a given position.

Get Column
Gets a column from the table as a List of cell values.

Get Range
Gets a range of the table between given start and end position range.

Get Row
Gets a row from a table by its position.

Get Unique Rows
Removes duplicate rows from a table.

Merge Tables
Merges two tables by appending rows into a new single table.

Remove Table Range
Removes a range of rows from a table by given start and end positions.

Remove Row By Position
Removes a row from a table by its position.

Reverse
Reverses the order of rows in a table.

Set Cell
Sets a cell in a table at a given position.

Set Column
Sets the values of a table column. If column does not exist, it will be added to the table.

Set Row
Sets a row in a table at a given position.

Sort Table
Sorts a table by selected columns.
Convert Table to HTML
Converts a table to a formatted table in HTML. You may use this output in an email or a web page.
Convert Table to Plain Text
Converts a table to a formatted table in plain text.

Create Table From Entity
Creates a table from an entity by placing it as the first row.

Convert To List
Converts a table to a list of entities.

Convert Column to Yes/No
Converts a text column into a Yes/No column.

Convert Column to Date
Converts a text column into a date column.

Convert Column to Number
Converts a text column into a number column.