SETRANGE question

I would like to do a SETRANGE on a field “System to-do Type”, but with two possible values: - Contact Attendee or - Organizer My code looks like this: SETRANGE(“System To-do Type”, “System To-do Type”::“Contact Attendee”); What should I change to achieve this?

Do a SETFILTER instead: SETFILTER(“System To-do Type”, ‘%1|%2’, “System To-do Type”::“Contact Attendee”, System To-do Type"::Organizer); //Pelle

Great Pelle! Thanks!