Hi @Anonymous ,
Could you please share a bit more about the mismatch function?
Do you want to check if the entered data match the specific format within your custom form?
Currently, within PowerApps, there is no function called 'mismatch', I assume that the function you want to use is "IsMatch" function, is it true?
If you want to check if the entered data match the specific format within your custom form, show up a error message when the entered data does not match the specific format, please take a try with the following workaround:
Set the OnChange property of the TextInput1 to following:
If(
!IsMatch(TextInput1.Text, "[SE]\.\d{2}\.[FC]\.\d{2}\.[A-H]"),
Notify("The entered data does not match the required format, e.g. E.05.F.44.B", NotificationType.Error);Reset(TextInput1)
)
On your side, you may need to set the OnChange property of the DataCardValue3 to following:
If(
!IsMatch(DataCardValue3.Text, "[SE]\.\d{2}\.[FC]\.\d{2}\.[A-H]"),
Notify("The entered data does not match the required format, e.g. E.05.F.44.B", NotificationType.Error);Reset(DataCardValue3)
)
If the entered data in your DataCardValue3 does not match the "[SE]\.\d{2}\.[FC]\.\d{2}\.[A-H]" format, the error message would show up, and the DataCardValue3 would be reset.
Please take a try with above solution, then check if the issue is solved.
Best regards,