Hi,
I'm populationg a grid with the following bo/Query:
SELECT Company.CAMPAIGN_YN, Company.RAISON_SOCIALE,
FROM Company, People
WHERE
Company.SIRET=People.SIRET
and
left(Company.CP,2) IN (@memDpts).
The local variable memDpts is a memo populated using a List field on the form and is bound with @memDpts.
This work fine only if @memDpts is a single value ("65" for example).
What syntax, type ,... should I use to make it work with a list (really using the IN), I tried many things (add quotes , commas, double quotes,...), but I can't fix it.
Thanks for help.