Sorry I'm new to PowerApps and i have a button who should go off or on for diffrent conditions but I get this ErrorMessage that this formular contains ParenClose but Comma is expected.
This is my code(sorry for bad English I'm german)
If(
Auswahl.Selected.Value = "Büro" && (IsBlank(FeldTelefonnummer) || IsBlank(FeldEmail)|| IsBlank(FeldWohnort)) || IsBlank(FeldBereich);
DisplayMode.Disabled;
Auswahl.Selected.Value = "Produktiv" && (IsBlank(FeldTeam) || IsBlank(FeldAnstellung);
DisplayMode.Disabled;
DisplayMode.Edit
)