Hi All
I have about 9000 rows of data that refresh from an external source.
After a refresh I need to add another column to the data. If one column in the data is equal to one of about 20 values then the new column has the value true, otherwise it is false.
What is the quickest way of checking if each row is true or false, as I want to automate recalcalculating the new column when the user refreshes? I want this to happen as quickly as possible becuase the refresh takes long enough already...
I have tried using vlookup (dragging it down the rows and then pasting values), and also checking to see if each item in the row is in a collection containing the 20 items, but I wonder if anybody can think of something faster. e.g. a smart use of the find method, hash tables, better code for the use of the collection (at the moment I am using "for each item in mycollection"
Cheers