Use a cell with text on it as part of a SUM formula

  • Thread starter Thread starter mmorganb
  • Start date Start date
M

mmorganb

Using an indirect command, I got "Bond!D1:D5" in cell A1. "Bond" is the
name of one of my tabs.

I want to sum the values in the Bond tab, cells D1:D5, using the text
displayed in cell A1. In other words, I want to use SUM(Bond!D1:D5) in
cell A2, but I don't want to type the "Bond!D1:D5" portion, but rather
pull it from cell A1, which is showing "Bond!D1:D5"...obviously,
=sum("A1") didn't work.

I'm attaching the example in case I have managed to confuse everybody.


Thanks a lot for your help!

Attachment filename: test.xls
Download attachment: http://www.excelforum.com/attachment.php?postid=431003
 
Hi mmorganb,

That is what you should use the INDIRECT worksheet function for. Enter this
in A2:

=SUM(INDIRECT(A1))

--
Regards,

Jake Marx
MS MVP - Excel
www.longhead.com

[please keep replies in the newsgroup - email address unmonitored]
 
Hi
try
=SUM(INDIRECT(A1))
if A1 stores your cell reference as string

Frank
 
=SUM(INDIRECT(A1))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Guys,

Thanks for your prompt reply (in fact, I found out I was making an
obvious mistake). Your help was greatly appreciated.

Michael
 

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