Google-sheets – How to SUM() a column from one Google Spreadsheets in another spreadsheet

google sheetsimportrange

Has anyone been able to return the SUM() result of a column in one Google Spreadsheets to a different spreadsheet?

I am trying the ImportRange(key, criteria) but I am not having any success. I am just bringing in the entire column and not the sum result.

Best Answer

If you want to leave the data on the IMPORT sheet untouched, then you need to do this:

=SUM(IMPORTRANGE("key","range"))

This is a good post, here on Web Applications, about the IMPORTRANGE function: IMPORTRANGE