> When I use the command EDIT USING formname WHERE
> colname IN &varname,
> I get an error "parenthesis are required around the
> list for the in clause".
> When I change the code to EDIT USING formname WHERE
> colname IN (&varname),
> I get the error that "no data is found".

Joel: Has my earlier post made it through to you yet? 
It has code to do what you want.

In brief, you must do:

SET VAR Varname = '(' + .VarName + ')'
EDIT USING formname WHERE ColName IN &Varname
--
Larry

Reply via email to