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. Rows

Get Row(s)

Retrieves a single row or multiple rows from a table.

Overview

This procedure gets a single row or multiple rows from a table. Optionally, a row selection formula can be specified to narrow the retrieval.

You can retrieve up to a maximum of 1,000 rows.

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.

get the table's row(s)

What does it do? Instructs the system to get one or more rows from a table. If a single-row request returns multiple rows, a question will be raised, prompting you to select one.

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 selection formula is

What does it do? Specifies a pandas query expression for row selection.

Where does it go? This phrase should be indented beneath get the table's row(s) where.

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

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

Examples

1. Get a Single Row

create an sample table
get the table's row

A question is raised saying Multiple rows found, please select a row to continue.

2. Get a Single Row Using a Row Selection Formula

create an sample table
get the table's row where
    the row selection formula is "Name == john"
Name
Number
Address
City

john

+ 1 (415) 691 9426

123 east street

San Francisco

3. Get Multiple Rows

create an sample table
get the table's rows

the rows

Address
City
Name
Number

123 east street

San Francisco

john

+ 1 (415) 691 9426

321 west street

San Jose

joe

+ 1 (415) 691 1234

213 north street

San Francisco

jack

+ 1 (415) 691 4595

4. Get Multiple Rows Using a Row Selection Formula

create an sample table
get the table's rows where
    the row selection formula is "City == San Francisco"

the rows

Name
Number
Address
City

john

+ 1 (415) 691 9426

123 east street

San Francisco

jack

+ 1 (415) 691 4595

213 north street

San Francisco

Last updated 1 day ago

Was this helpful?