I need to create validation for list question for unique (description of persons).
I was trying to create macro but it doesnt work, do you have any idea how to do it?
Thanks
for (var i = 0; i < List_osob.Length; i++)
{
if (List_osob.Count(x=>x.Item2 == List_osob[i].Item2)>1) return true;
}
return false