Forum Discussion
negbc
Helper II
1 year agoMultiple Operators in Conditional Query
I have the code below that is returning the incorrect result. I believe it is the multiple 'or' conditions afterwards. Is there a solution to fix this so the result would be if the Line=ele AND ship=...
- Anonymous1 year ago
if ([Line]="ELE" and [Ship]="VA") and ([Category]=101 or [Category]=102 or [Category]=103 or [Category]=104 or [Category]=105 or [Category]=106 or [Category]=107 or [Category]=108 or [Category]=109 or [Category]=110)
then [Cust] else null--Nate
Anonymous
1 year agoNot applicable
if ([Line]="ELE" and [Ship]="VA") and ([Category]=101 or [Category]=102 or [Category]=103 or [Category]=104 or [Category]=105 or [Category]=106 or [Category]=107 or [Category]=108 or [Category]=109 or [Category]=110)
then [Cust] else null
--Nate
- negbc1 year ago
Helper II
Parentheses, of course! Thanks!