Include AND and OR conditions in a SELECT

How can I include two or more conditions in a SELECT.

I try to insert the words AND / OR but the select don't work.

Could I get some help?

Solved Solved
1 5 161
1 ACCEPTED SOLUTION

The expression syntax would follow this pattern:

SELECT(Table Name[Column Name], AND( <<criterion1>>, <<criterion2>>))

You would replace AND with OR if OR was the proper choice.

Each <<criterion>> must be an expressions that result is a TRUE or FALSE response; at least 2 criterion are required but you can have more than 2.

View solution in original post

5 REPLIES 5
Top Labels in this Space