Setting using JSL so that the control chart does not display batches for which there are missing data for a given parameter.
As the topic. Normally in JSL we indicate batches (represented by a given column) for which we present points on the control chart as follows: Local Data Filter(
Close Outline( 1 ),
Add Filter(
columns( :Batch ),
Where(
:Batch == {"01/10/2022", "01/11/2022", "01/12/2022", "01/13/2022"}
),
Display( :Batch, N Items( 15 ), Find( Set Text( "" ) ) )
)
),
However, how can we reque...