Hi guys,
I'm trying to set a validation rule on my "email" column so that all rows inserted by user contain unique emails.
Normally i would do something like this with a counif formula.
My problem is that i want this to be dynamic and apply to each new row.
validation: {
from:"AND(COUNTIF(A:A,A3)=1)",
dataType: "custom",
messageTemplate: "Email must be unique",
type: "reject"
}