Convert cell contents to range

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I named a group of cells "northwest" which contains sales data. I could sum
the sales data with a formula =sum(northwest). Is there a way to sum the
sales data with a formula =sum(A2) where cell A2 contains the text
"northwest"?
 
Dedicated to Max:

Try this:

=SUM(INDIRECT(A2))

Note: this will not work if "northwest" is a dynamic named range.

Biff
 
Biff said:
Dedicated to Max:
Indirect thanks said:
=SUM(INDIRECT(A2))
Note: this will not work if "northwest" is a dynamic named range.

But this seems to work ok if "northwest" is a dynamic named range:
=SUM(northwest)

---
 
But this seems to work ok if "northwest" is a dynamic named range:
=SUM(northwest)

Above comment is of course not relevant to the orig. post

---
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top