C
charles.middleton
Hi guys,
I use a number of separate Google Sheets to record applications made through a Google Form.
We have c20 forms, each with it's own sheet.
I'm trying to build a central tracking sheet (in a new book), that can count the number of applications made (rows) between two dates.
For example, using IMPORTRANGE to pull data from the external sheet, take the STARTDATE and ENDDATE from the central reporting sheet, IMPORTRANGE to count all non-blank rows from the external sheet ONLY where the datestamp onthe application is between the STARTDATE and ENDDATE.
I can do this count on the local sheet...
=SUMPRODUCT((A2:A100>=C2)*(A2:A100<D2+1))
(Where C2 is the STARTDATE and D2 is the ENDDATE)...
....but cant make it work when importing the data.
So far I've got
=sumproduct((IMPORTRANGE("1FDObu7x-UJ29BT_7mW8MKur0LiSCEkStkw8D7mr9V1E","Form Responses 1!a:a">=E1)*(IMPORTRANGE("1FDObu7x-UJ29BT_7mW8MKur0LiSCEkStkw8D7mr9V1E","Form Responses 1!a:a"<G1+1))))
....which I wrote based on the local sumproduct above, but no joy.
Any suggestions?
Thanks
I use a number of separate Google Sheets to record applications made through a Google Form.
We have c20 forms, each with it's own sheet.
I'm trying to build a central tracking sheet (in a new book), that can count the number of applications made (rows) between two dates.
For example, using IMPORTRANGE to pull data from the external sheet, take the STARTDATE and ENDDATE from the central reporting sheet, IMPORTRANGE to count all non-blank rows from the external sheet ONLY where the datestamp onthe application is between the STARTDATE and ENDDATE.
I can do this count on the local sheet...
=SUMPRODUCT((A2:A100>=C2)*(A2:A100<D2+1))
(Where C2 is the STARTDATE and D2 is the ENDDATE)...
....but cant make it work when importing the data.
So far I've got
=sumproduct((IMPORTRANGE("1FDObu7x-UJ29BT_7mW8MKur0LiSCEkStkw8D7mr9V1E","Form Responses 1!a:a">=E1)*(IMPORTRANGE("1FDObu7x-UJ29BT_7mW8MKur0LiSCEkStkw8D7mr9V1E","Form Responses 1!a:a"<G1+1))))
....which I wrote based on the local sumproduct above, but no joy.
Any suggestions?
Thanks