Products | Versions |
---|---|
Spotfire Analyst | All Versions |
Edit Data Define Input > Input for the selected parameter: Range (fixed/properties/expression) > Min/Max > Expression > [MY_DATA_TABLE].[MY_COLUMN].
When you are defining the "Range (fixed/properties/expression)" as an expression for an on-demand data table's input parameters, it expects a single value for each parameter, and not a list. To resolve the error you must apply an aggregation method in the expression for each parameter, to convert each list into a single value.
1). Click on Edit > Data Table Properties.
2). Select the on-demand table.
3). Click on Settings.
4). Click on Define Input.
5). In the Expression for Min, use the Min() aggregation method around the expression.
Example: Min([MY_DATA_TABLE].[MY_COLUMN])
6). Similarly, in the Expression for Max, use the Max() aggregation method around the expression.
Example: Max([MY_DATA_TABLE].[MY_COLUMN])