I have this line of code that doesn't work:
set filter to trim(&cField) $ aChoice
where aChoice := { 'MAIN' } (in later use it will be a larger array, I just wanted 1 element for testing)
and cField is declared as private cField:='storeid' (a valid field in the open data file)
it compiles fine, but hangs on that line when I run it.
Thoughts?
thanks
another filter issue
another filter issue
There are only 10 kinds of people - those who understand binary and those who don't
Re: another filter issue
More filter issues... Am I overlooking something incredibly obvious?
set filter to ('|' + trim(storeid) + '|') $ '|MAIN|' works fine,
but if I set cChoice := '|MAIN|' and try
set filter to ('|'+ trim(storeid) + '|') $ cChoice it doesn't work.
????
set filter to ('|' + trim(storeid) + '|') $ '|MAIN|' works fine,
but if I set cChoice := '|MAIN|' and try
set filter to ('|'+ trim(storeid) + '|') $ cChoice it doesn't work.
????
There are only 10 kinds of people - those who understand binary and those who don't