I have a form that has 5 separate fields that have to be filled in a certain way before the form is submitted. I have Business_EIN_Value should be 9 digits. Individual_SSN_Value should be 9 digits. Customer_ZIP_Value should be 5 digits. Business_Telephone_Value should be 10 digits. And finally Contact_Email_Value should be set up in an email format. Is there a way to create a formula that will look at all of these factors and not allow the user to submit the form without having the items filled in correctly.
I've been able to do this before with just one using If(IsMatch(Business_EIN_Value.Text, Digit & Digit & Digit & Digit & Digit & Digit & Digit & Digit & Digit), SubmitForm(AppForm);ResetForm(AppForm);Navigate(SuccessScreen), Notify("Please input a valid 9 digit Business EIN", Error))
However, I'm not sure how to do the email at all and I can't get the If IsMatch to nest correctly and I'm not sure if there's a way to do what I'm wanting. Any help, any direction would be greatly appreciated.