get all cell address

  • Thread starter Thread starter be_675
  • Start date Start date
B

be_675

I have a string which has been extracted from a formula. It looks
like:

SUM(Sheet1:Sheet5!C8).

Can some one tell me how I can take this and then display each of the
five cell addresses and values with each one, ie a list like this

Sheet1!C8 - value from the cell of x
Sheet2!C8 - value from the cell of y
Sheet3!C8 - value from the cell of z
Sheet4!C8 - value from the cell of a
Sheet5!C8 - value from the cell of b

Thanks
be
 
Prefix an "=" to each statement to get the results. If you really want the
value and the cell address in one cell, you can use something like
="Sheet1!C8 = "&Sheet1!C8
 

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