Show button if 2 conditions
Hi all. How can I set a button to show only if 2 conditions are fulfilled?
I have 3 buttons:
RC & AA - show only if Selection 1 = 1 or 2 or 3 AND if Selection 2 = 1
Sin RC & AA - show only if Selection 1 = 1 or 2 or 3 or 4 AND if Selection 2 = 2
Trail - show only if Selection 1 = 4 AND if Selection 2 = 1
Thanks
6 replies
-
Inserisci la formula nel campo "mostra solo se" del pulsante.
if condizione1 = "valore" and condizione2 = "valore" then
pulsante1
-
scusa mi correggo:
condizione1 = "valore" and condizione2 = "valore"
-
Thanks. But I want 3 subconditions in 1 condition. Example:
Modalitat = 1 or 2 or 3 and AFAIB = true
but not working.
Thanks again
-
Is Modalitat a choice field or multiple choice?
-
Prova cosi:
let m:= Modalitat
let a:= AFAIB
m =1 and a = true or m=2 and a = true or m=3 and a = true
-
Antonello Stabile 71 your code works perfect.
Thanks to both of you!!
Content aside
- 4 yrs agoLast active
- 6Replies
- 523Views