Domino Code Fragment

Code Name*
Multiple "OR" conditions in SELECT Statement
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.18.191.195.110
Description*
Here are two alternatives to using multiple OR statements.
Type*
Formula
Categories*
(Misc)
Implementation:
Required Client:
Server:
Limitations:
Comments:
Files/Graphics attachments (if applicable): Code:
A selection statement with multiple -OR- conditions:

SELECT Form = "Form1" | Form = "Form2" | Form = "Form3" | Form = "Form4"

Alternative statements

1. SELECT @IsMember( Form ; "Form1" : "Form2" : "Form3" : "Form4")

2. SELECT Form = "Form1" : "Form2" : "Form3" : "Form4"