Search unanswered questions...
Enter a question here...
Search: All sources Community Q&A Reference topics

A boolean query is a query that uses a boolean conditional.

E.g., an overtime formula would be

(hours-40)(hours>40)

The boolean expression would multiply the first result by 1 if hours is greater than 40, and, by 0 otherwise. This would prevent a negative overtime calculation.

The result would be the same as

=if(hours>40, hours-40,0)

krazykyngekorny(at)gmail.com

Improve Answer Discuss the question "What is boolean query?" Click here to register and get updates when this answer is edited.

First answer by ID1202039075. Last edit by ID1202039075. Question popularity: 1 [recommend question]