Good afternoon. I have inherited a task that gets data from our customer, sorted in their preferred order. Basically we have to run down Column "T" and look for occurrences on any of the 6,000 lines in Columns "K" to "S". If it is found in any of these columns (it will only appear once in each row) then add the values from that Row, Column "U" and the put that value in Column "V".
So I have to go through each of the 6,000 rows for the value of "T" & look for it in any of the 6,000 rows.
Basically it is a horrible nested loop of 6,000 x 6,000.
Any suggestions of how I can stop this taking 10+ minutes to run?
Bear in mind I can't re-order the data.
Many thanks,
D€$
So I have to go through each of the 6,000 rows for the value of "T" & look for it in any of the 6,000 rows.
Basically it is a horrible nested loop of 6,000 x 6,000.
Any suggestions of how I can stop this taking 10+ minutes to run?
Bear in mind I can't re-order the data.
Many thanks,
D€$