I would like to include up to 3 conditions in a MailMerge
field. Below is my current field which returns 1
if checkbox1
is checked
.
if"<<cb1>>"="Yes" "Checked""Unchecked"
I would like to include checking of additional cb2
and cb3
, to check if any of them are checked.
May I know how can it be done?
p.s. I left out the { }
colons which I am not sure if it will be required here.
Edit: Tried the following structure but the output was Yes
if
"if"<<cb1>>"="Yes" "1""0""
+
"if"<<cb2>>"="Yes" "1""0""
+
"if"<<cb3>>"="Yes" "1""0""
>0
"1 or more checked""None checked"