I have several sets of data in 1 excel sheet. I would like to store each of the sets of data into their own array so that I can do the necessary calculations after. I saw this thread on how to get data and store it into an array for one set of data, but how do I go through and do this data in Column A, Column B, C etc. I would like to use some kind of loop to go through the different columns, but since the columns are defined by letters and not numbers, I'm not sure how to increment them.
Also, if anyone knows some good resources on how to plot data from the vba code, that would also be appreciated. Everything I have seen is for older versions of excel (I'm using Excel 2016).
Thanks.
Here is the code mentioned from the link:
Dim Ar as Variant
Ar = Sheets("Sheet").Range("A1:A10000").Value