openTable
To open a given table
This function closes the current table and opens a given table. You can specify the request by adding a view you want the table to be opened with.
If you didn't add a specific view, the "default" or the last active view will be opened.
openTable(string)
openTable(string, string)
void
openTable("Invoices")
Result: The Invoices table opens.
openTable(myTable, myView)
To open a given table with a given view.1
openTable("Invoices", "Current month")
Result: The Current month view of the Invoices table opens.
Last modified 1mo ago