Getting a Table from Excel
Overview
You can get a table from an Excel file by specifying the column headers. Tables can be further operated on using table operations.
🔔 Note: This operation applies to a sheet
.
Syntax
Inputs
start column
: The starting column for the table.end column
: The ending column for the table.
Example
Consider the following table:
Name
Age
Favorite Book
Favorite Genre
Alice
25
Pride and Prejudice
Romance
Bob
32
The Hobbit
Fantasy
Charlie
28
1984
Dystopian
Diana
22
To Kill a Mockingbird
Historical Fiction
Ethan
35
The Da Vinci Code
Thriller
The following operation will retrieve a subset of the table by selecting the columns from "Name" to "Favorite Book":
This is the resulting table:
Name
Age
Favorite Book
Alice
25
Pride and Prejudice
Bob
32
The Hobbit
Charlie
28
1984
Diana
22
To Kill a Mockingbird
Ethan
35
The Da Vinci Code
Last updated
Was this helpful?