I have the following issue: I have 2 sheets A and B, each of which has a table indexed by some variable indexA and indexB.
I want to create a matrix in a third sheet C whose columns are indexed by indexA and whose rows are indexed by indexB, such that, whenever I add an entry in sheet A or B, the row/column is automatically added to C. How can this be done?
Optional but desired: autofilters across both rows and columns.
I tried using arrays, but it’s incredibly slow. I think this is because the arrays iterate over the whole column for some reason, and doesn’t automatically stop at the last cell that has content?