I'm using the Custom Query activity in Workflow and trying to pass a list of string values to insert into the where clause.
Ex: Where accountNumber in ('1234','5678')
In the Workflow query, I've replaced the values with a variable:
where accountNumber in (@AcctNbrs)
No matter what I try, I can't find a way to pass a list of account numbers into the variable without getting an error. I've tried providing a multi-value token seperated by ','
Ex: %(RetrieveFieldValues_Account Numbers_All#[',']#)
All other attempts have been variations on this.
Is there a way to do this with a variable number of account numbers?