I am currently writing code to combine two sheets containing different versions of data. In this regard, I first want to sort both using the key column, combine them and subsequently mark the changes between versions on the output sheet.
Since the data is already several 10000 rows and may exceed the limit of rows on the excel sheet, I want these calculations to be performed outside the worksheet. Also it should work better.
I am currently thinking of Quicksort first and second data, and then comparing the data for each key / row. Using the comparison result for subsequent formatting of the cells, respectively.
Question
I would just like to know if I should use:
List OR Array OR Collection OR Dictionary
OF Lists OR arrays OR collections or dictionaries
I could no longer determine the differences in coding and performance between these 16 features. I am currently implementing the Array OF Arrays approach, constantly wondering if this really makes sense?
Thank you in advance for your contribution and wisdom!
source share