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))
);