Search code examples
pythonironpythonspotfire

Spotfire can i input a column through ironpython script?


I understand that we can use dataFunction.Inputs.SetInput(inputs,"String(\"HelloWorld\")") to set a string to my input parameter. Is there any way I can give an entire column instead of a string.


Solution

  • Nevermind. I found the answer. It can be done using dataFunction.Inputs.SetInput(inputs,"[DataTable name].[Column name]")