I'm trying to set up different error messages to appear based on what the user types into different fields which requires multiple if statements under the text heading but it keeps giving red underlines that it doesn't like it. I was hoping someone could assist me.
Right now I have:
If (IsBlank(NameInput), "Please enter a name", " ",
If (OperatorCode.Selected.Value = " ", "Please selected a code", " ",
If (StartTime < EndTime), "Start time cannot be less than end time", " ")))
Any combination of parenthesis and commas don't seem to work. Any help would be greatly appreciated! Kind of new to this but starting to get the hang of things.