Checking for Duplicate values in a field
This section covers checking for duplicate values in a field.
To prevent users from uploading duplicate values for a specific field, you can utilize the data validation function.
Below is an example of such a function that identifies duplicate values in a column and displays an error message to the user:
In this function:
We iterate over each element in the
rows
array.For each
row
, we check if the email address at index 2 (row[2]
) has been seen before. If it has, we add it to theseen
object.After the loop, if any duplicate email addresses are found (i.e., if the
seen
object contains the email address more than once), we return an error message indicating the duplicate value found.If no duplicate email addresses are found, we return
true
to indicate that the validation passed without any issues.
Last updated