1

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
Keng
  • 52,011
  • 32
  • 81
  • 111

1 Answers1

2

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

Document.Data.Tables["mytable"]
niko
  • 3,946
  • 12
  • 26
  • 2
    couldn't find them with a search. I'm going to start asking a bunch of Spotfire IronPython questions to start beefing up SO's coding base for Spotfire, so be on the look out. – Keng Oct 13 '15 at 12:47
  • 1
    yeah it's not a specific question, but buried in some other responses :) apologies if I sounded snarky; I'll edit that out. and bring on the questions! – niko Oct 13 '15 at 14:32
  • oh not at all. no worries. – Keng Oct 13 '15 at 15:01