Search code examples
ironpythonspotfire

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

Solution

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

    Document.Data.Tables["mytable"]