Keng
Keng

Reputation: 53101

How do I refer to a spcific datatable in IronPython in Spotfire?

I need to refer to a specific datatable in Spotfire in IronPython.

currently I'm seeing references to this but the datatable I need 'may' not be the one that is active.

Document.ActiveDataTableReference

Upvotes: 1

Views: 944

Answers (1)

niko
niko

Reputation: 3974

you can refer to any table by name using this syntax:

Document.Data.Tables["mytable"]

Upvotes: 2

Related Questions