Verify if a liste of value is on a dataset column

convert the dataset column id_Zone into a list by,

TIP - Converting a dataset column into a list - Ignition - Inductive Automation Forum

compare if it is present in the listZone by,

any(map(lambda value: value in id_Zone, listZone ))

1 Like