I am trying to apply a Data Filter using the JSL code below. It is selecting the called for rows but the Show and Include boxes are not checked in the Data Filter window, see below. What am I missing? After this filter I plan to run a CDF plot through the Fit Y by X portal then clear the Data Filter and reapply new Data Filter settings and run a different CDF plot. Thank you.
//Select Parms to Plot
stackq4DT << Data Filter(
Add Filter(
Columns(:FC, :Parameter),
Where(:FC == "Item1"),
Where(:Parameter == {"P1", "P2", "P3", "P4"})
),
Mode(Select(1) | Show(1) | Include(1))
);
The Mode() option of the data filter takes multiple arguments separated by a comma:
Mode( Show( 1 ), Include( 1 ) )
When using the 'or' operator, the options are not recognized.
The Mode() option of the data filter takes multiple arguments separated by a comma:
Mode( Show( 1 ), Include( 1 ) )
When using the 'or' operator, the options are not recognized.
Thank you very much for correcting my mistake. Works as I need it to.