I have a database query set up that will pull an array into excel. Before it pastes the values in the sheet I want it to perform an array calculation. The array is coming in with 3 columns and a varying number of rows, I want to multiply the 2nd and 3rd columns and only return the single column of results. Is there a way to do that? something to the effect of "=column((query(xxx)),2) * column((query(xxx)),3)" I know that column is a function that just returns a column number, I just used it as a reference here for what i'm trying to do.