Hi I need some help getting a multiple if formula right.
My current formula seems to work but I'm not sure I'm writing this in the best way.
I want to show the card if the first two options are selected true. If they are not true then I will never show it.
But if the two options are true but SelectSite = MySite and SelectTrainingType = None then it should not show.
If the SelectSite and SelectTraininType is anything else it should still show.
The below seems to be working but again I'm I writing this in the best way?
If(
varFormSection = 3 &&
varManuallyOrImport = "Manually",
true And If(
SelectSite.Selected.Result = "MySite" &&
SelectTrainingType.Selected.Result = "None",
false, true))