I am trying to condense a large data set by creating a two tab 'machine'. One tab takes the raw data (50,000 rows +), and the second tab produces a rollup of the data while maintaining the same array width. (i.e. column positions need to respected).
I have tried using both FILTER and/or UNIQUE and it gets me very close, but something isn't quite right.
I have a range A2:T10000
Columns A,B,C,D,E,F,G,H,J,L,M,P,R,S,T comprise a unique ROW ID.
Columns I,K,N,O,Q are data that will need to be summed once the data set is rolled up.
Column P is that data that needs to be ignored to allow the data set to be rolled up.
So by ignoring the ID values in column P the overall Row ID becomes more generic allowing the data set to be collapsed into a more general grouping.
I am not able to use FILTER (array, {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1}) as this will remove the column. The column needs to remain as there will be one condition where the Column P ID will be retained (based on the date in column A), but this I can address separately with a VSTACK (maybe).
Does anyone know how to manipulate FILTER/UNIQUE so that I can paste a single 2D array equation in the A2 position of the rollup sheet, which will maintain the original data set column positions, ignore data in column P and sum the data in Columns I,K,N,O,Q after UNIQUE has created a reduced list?
I have tried using both FILTER and/or UNIQUE and it gets me very close, but something isn't quite right.
I have a range A2:T10000
Columns A,B,C,D,E,F,G,H,J,L,M,P,R,S,T comprise a unique ROW ID.
Columns I,K,N,O,Q are data that will need to be summed once the data set is rolled up.
Column P is that data that needs to be ignored to allow the data set to be rolled up.
So by ignoring the ID values in column P the overall Row ID becomes more generic allowing the data set to be collapsed into a more general grouping.
I am not able to use FILTER (array, {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1}) as this will remove the column. The column needs to remain as there will be one condition where the Column P ID will be retained (based on the date in column A), but this I can address separately with a VSTACK (maybe).
Does anyone know how to manipulate FILTER/UNIQUE so that I can paste a single 2D array equation in the A2 position of the rollup sheet, which will maintain the original data set column positions, ignore data in column P and sum the data in Columns I,K,N,O,Q after UNIQUE has created a reduced list?