I am trying to validate that certain fields contain data before sending the data to my SharePoint list. Right now I am doing something like this...
If(
!IsBlank(TxtInput_1.Text, Set(BorderColor, Red), Set(BorderColor, Black)) && !IsBlank(DropDwn_1.Selected.Value.Text, Set(BorderColor, Red), Set(BorderColor, Black)) && !IsBlank(radioBtn_1.Selected.Value, Set(BorderColor, Red), Set(BorderColor, Black))
Patch(
MyList_1,
Defaults(MyList_1),
{
}
)
)but this is giving me errors that state that there are some invalid arhuments. What is the best way to go about doing this?