Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have two field values 'Exception' and 'Review'. How can I use these two field values in WHERE condition
like
Where Name='Exception','Review' but it's showing error.
could anyone help me.
thanks
HI
Try like this
Where match(Name,'Exception','Review' );
Try this:
Where
(Name = 'Exception') or
(Name = 'Review');
Regards,
Gerrit
HI
Try like this
Where match(Name,'Exception','Review' );
Use Match
Where Match(Name,'Exception','Review')
Hope this helps
Thanks very much
Thanks