Hi,
I'm trying to add and preserve an 2d array. Empty to start.
First column will contain string, and Second column will contain numbers of times occurred.

I have a loop that goes through part of the sheet and takes a string from each cell let's call strStat.
If strStat is not found in the first column of the array let's call arrStat then redim preserve and add to first column and 1 to second column.
If strStat already exist in the first column of arrStat then add +1 to the second column.

I really don't know where to start. Can I get some help?