That would be great! There is already a workaround: Write a validation formula for a formula field that if Phone is selected in the Contact_Via field, the phone format is required and if Email is selected, the email format is required.
If(
thisRow.Contact_Via = “Phone”,
RegexMatch(CurrentValue, “^(?\d{3})?[-.\s]?\d{3}[-.\s]?\d{4}$”),
RegexMatch(CurrentValue, “[1]+@[\w.-]+.\w+$”)
)
\w.- ↩︎