Hi
I have a button and would like to perform a multiple action IF statements below code i have tried but only does the first statement can you help please
This code is on OK button Onselect
If(
SingleField_2.varSelectedAction = 1,
Notify(
"Task Comming Soon",
NotificationType.Information
),
If(
SingleField_2.varSelectedAction = 2,
Notify(
"Email Comming Soon",
NotificationType.Information
),
If(
SingleField_2.varSelectedAction = 3,
Patch(xxxxx
)
)
)
)