Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Is it possible to use the IN fuction when loading a QVD.
When I try to use the IN function in the Where conditon its showing error.
Please advise...
Regards
Chriss
Hi
The QV script equivalent is Match(), eg
Where City In ('Cape Town', 'Johannesburg', 'Harare')
codes in QV like this:
Where Match(City, 'Cape Town', 'Johannesburg', 'Harare')
Hope that helps
Jonathan
Hi
The QV script equivalent is Match(), eg
Where City In ('Cape Town', 'Johannesburg', 'Harare')
codes in QV like this:
Where Match(City, 'Cape Town', 'Johannesburg', 'Harare')
Hope that helps
Jonathan
Excellent Jonathan,
It works......