Hi All,
I just completed a macro for work that essentially does a looped check between two lists, the lists contain 5 columns worth of data and the macro compares and matches the lists together. What I'm running into is an overflow error when the data set is too large,
it's a bit tricky to figure out what "too large" is but I'm hoping to find a work around.
Details:
Records
List A: 56,708
List B: 1,500
When I run the check it always hits the error after the 10th check from List B (it matches list B to List A). Now if I shrink list A down to something smaller (not sure exactly what, but I know that if I do just the letter A it has about 2,931 records and then
I can run the script on a much much larger List B (over 30,000 records).
Ultimately I'd like to run a check on my entire data set which would be 56,708 records for A and then about 900,000 records for B. I don't understand why it would fail on an overflow error when it's just a simple if check (it compares 5 points from List B to
List A and then if there isn't a match at any point it goes to the next record, just a simple loop).
Any suggestions greatly appreciated