Can I find in which row a data value is located, without using a loop?
I have a datasource with 2 columns - Customer number and Customer name. In order to avoid duplicate data, I would like to find out if a customer number already exists in the Customer number column before adding the new customer. Is there some command to do so, without using a loop?
Thanks
No, you will have to loop through the rows.