Split a Table

Split a large table into smaller subtables.

Overview

This procedure divides a given table into smaller subtables, each containing at most a specified number of rows. It is useful for handling large datasets that exceed processing or display limits.

Syntax

Below is a line-by-line overview of the automation syntax. Expand each line to learn more.

split the table into subtables

What does it do?

Splits the table into subtables.

Where does it go?

This phrase should be written on a new line.

Is it required?

✅ Yes — This phrase is required.

Does it require data?

✅ Yes — A reference to the table must be defined.

the row count is x

What does it do?

Specifies the number of rows per subtable.

Where does it go?

Indented under split the sample table into subtables.

Is it required?

❌ No — This phrase is optional.

Does it require data?

✅ Yes — Replace x with a positive integer representing the number of rows. The default is 30,000.

Examples

1. Split a Table into Subtables Using the Default Row Count

create a sample table
split the sample table into subtables

2. Split a Table into Subtables with 2 Rows Each

create a sample table
split the sample table into subtables where
    the row count is 2

Last updated

Was this helpful?