How do I set a CheckBox Field

Hi,

I am trying to run an agent to set a checkbox field to different selections. I am using the code below but do not know the syntax to use for the “variable”. If I set it to just one checkbox value, it works but I can’t figure out how to set it to multiple “check boxes” in the CheckBoxField.

FIELD CheckBoxField := @Environment ("variable");

Any help would be greatly appreciated.

Thanks, Paul

Subject: Multi-values

Hi Paul, just separate your values with colons.

FIELD CheckBoxField := @Environment (“variable”):@Environment(“variable2”):@Environment(“variable3”);

Or you can make your envronment variable multi-value and just use that.

Hope this helps,

Phil

Subject: Thanks!!!

Thanks Phil, this makes sense… I’ll give it a go .

Take care, Paul