Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

AND function in QV?

Hello Everyone,

I am quite new in developing tabs in QV and now I am facing a challenge: I can't find an equivalent of the excel function AND in QV, same thing for OR.

Can someone help me on this ?

Many thanks for your efforts

1 Solution

Accepted Solutions
SunilChauhan
Champion
Champion

if( field=1 and field=2 ,'Hello')   for and

if( field=1 or field=2 ,'Hello')   for or

or in load

Load *

from path where  field=1 and field=2;

Load *

from path where  field=1 or field=2;

hope this helps

Sunil Chauhan

View solution in original post

2 Replies
SunilChauhan
Champion
Champion

if( field=1 and field=2 ,'Hello')   for and

if( field=1 or field=2 ,'Hello')   for or

or in load

Load *

from path where  field=1 and field=2;

Load *

from path where  field=1 or field=2;

hope this helps

Sunil Chauhan
Not applicable
Author

Thanks to a combination of the two I got what I was looking for !!! Many thanks for your help and have a nice day