Hi,
I have a form with To and From Office fields in an App recording the movement of mail within the company; both fields are Dropdown controls with the Office values populated into Items (rather than looking up values elsewhere). I want to notify users when the To and From values are the same as they should never be the same.
I have played around with a timer to show an error when the values are the same. Problem is I haven't quite figured out how to not show this error when there are blank values in both drowdown controls (which are the default values ). So as soon as the form loads the error message is displayed, I only want this to display if they have selected values other than blank e.g. To=Glasgow, From=Glasgow.
This is the formula I have against the Timers OnTimerEnd variable: If(!IsBlank(DropdownNewSenOffice.SelectedText.Value) = !IsBlank(ReceivingOfficeNew.SelectedText.Value) ||!IsBlank(DataCardValue32.Selected.DisplayName) = !IsBlank(DataCardValue9.Selected.DisplayName),Notify("Please check the form for duplicate values",NotificationType.Error))
Any advice on above or alternative solutions would be very welcome