LogoLogo
About
Tables: v2
  • Home
  • Guides
  • BDK
  • REST API
  • Release Notes
Tables: v2
  • Getting Started
    • Tables Overview
  • Table Creation
    • Create a Table
    • Create a Sample Table
    • Create a Pivot Table
    • Create an Integer Table
    • Create a Table from JSON
    • Create a Table from the Rows
    • Create a Combined Table
    • Create a Merged Table
    • Get a Table from a File
  • Rows
    • Get Row(s)
    • Get Row Count
    • Get Row Number
    • Get Value from Row
    • Group Rows
    • Insert a Row
    • Insert an Empty Row
    • Remove Duplicate Rows
    • Set a Row to JSON
  • Columns
    • Get a Column
    • Get a Column's Values
    • Get a Column Number
    • Get Column Count
    • Get Column Stats
    • Get Column Names
    • Change a Column's Data Type
    • Delete Columns
    • Insert a Column
    • Move a Column
    • Rename a Column
    • Rename Columns
    • Round a Column's Values
    • Update a Column
  • Cells
    • Set a Cell in a Table
  • Conversions
    • Convert CSV to a Table
    • Convert a Table to CSV
    • Convert a Table to Excel
  • Manipulations
    • Clear a Table
    • Combine Tables
    • Copy a Table
    • Extract a Subtable
    • Group a Table
    • Query a Table
    • Sort a Table
    • Split a Table
    • Join Subtables
    • Replace a Value
    • Replace a Value in a Column
    • Transpose a Table
Powered by GitBook
On this page
  • Overview
  • Prerequisite Data
  • Syntax
  • Examples

Was this helpful?

Export as PDF
  1. Manipulations

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.

The maximum supported row count is 30,0000. If no row count is specified, the procedure defaults to using the maximum allowed.

Prerequisite Data

These required data elements must be present in the automation before using the procedure.

Data Name
Data Type

the table

Table

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.

Does it require input data? ⛔ No — This phrase does not require input data.

Is it required? ✅ Yes — This phrase is required in the syntax.

the row count is

What does it do? Specifies the number of rows per subtable. Must be a positive integer. Defaults to 30,000 if not provided.

Where does it go? This phrase should be indented beneath split the sample table into subtables.

Does it require input data? ✅ Yes — A Number value should be specified.

Is it required? 🌟 No — This phrase is optional in the syntax.

Examples

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

create a sample table
split the sample table into subtables
Name
Number
Address
City

John

+1 (415) 691 9426

123 East Street

San Francisco

Joe

+1 (415) 691 1234

321 West Street

San Jose

Jack

+1 (415) 691 4595

213 North Street

San Francisco

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

the subtables

Name
Number
Address
City

John

+1 (415) 691 9426

123 East Street

San Francisco

Joe

+1 (415) 691 1234

321 West Street

San Jose

Name
Number
Address
City

Jack

+1 (415) 691 4595

213 North Street

San Francisco

Last updated 10 days ago

Was this helpful?