heyinlangley
Programmer
I'm trying to write a formula whereby I can substitute the contents of an IN statement. Let me illustrate:
This works:
Store_id in [1, 2, 3]
But, would like the 1, 2, 3 to be replaced with a variable along these lines:
global stringvar test;
test := '1, 2, 3';
store_id in [test];
Does anyone know if this can be done?
This works:
Store_id in [1, 2, 3]
But, would like the 1, 2, 3 to be replaced with a variable along these lines:
global stringvar test;
test := '1, 2, 3';
store_id in [test];
Does anyone know if this can be done?