Hi everyone!
I have a table with NAMES with three columns:
givenName
surName
name (=CONCAT($givenName," ",$surName))
And the values:
Eduardo | Dalcin | Eduardo Dalcin
Natalie | Grist | Natalie Grist
Dimitri | Grist | Dimitri Grist
There is any way to block or inform that there is already an “Eduardo Dalcin”, If I try to add it again?
Thanks in advance!
Eduardo