複数条件の設定方法

Hi @m-takeda1

You can use below condition in If

If
 (A = 1 AndAlso B = 1) OrElse (A = 1 AndAlso C = 1) OrElse (D = 1)
Then
   Your activities here if any of the conditions are true
Else
   Your activities here if none of the conditions are true
End If

Regards

1 Like