-1

Im facing a bottleneck guys, hopefully someone can help me out to solve this.

Im working in Google Shets and have several named ranges i want to import in a single sheet, from several different files. So, what im using to import a single range is =importrange("sheeturl","namedrange")

What im struggling with is importing the other ranges like this and have all overlapping cells sum. See a simplified example of what im looking for in the image, below:

(https://i.sstatic.net/xhcfO.png)

i tried formulas like =sum(importrange("sheeturl1","namedrange1"),importrange("sheeturl2","namedrange2")) but this only summed all the values in a signle cell.

1 Answer 1

0

You may try:

=arrayformula(
              importrange("Sheet_ID","NamedRange1")+
              importrange("Sheet_ID","NamedRange2")
              )
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.