Combining cells to create a formula

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

Guest

Hi,

I have two cells that I want to combine to have a working formula

B1 = sum
B2 = d3
b3 = =b1&"("&b2&")"
D3 = 10

The result in b3 is : sum(d3)

How do I get this to result in the actual value in D3.

I know I can simply write =D3, but the actual reason for combining the two cells is more complicated than explained here.

Thanks
 
Hi

I think you are perhaps looking for the Indirect function
=INDIRECT("D"&ROW(3:3))
would return the value contained in D3
As you copy down, the formula would alter to 4, 5 etc. represent D4, D5 etc.

--
Regards
Roger Govier
JYG said:
Hi,

I have two cells that I want to combine to have a working formula

B1 = sum
B2 = d3
b3 = =b1&"("&b2&")"
D3 = 10

The result in b3 is : sum(d3)

How do I get this to result in the actual value in D3.

I know I can simply write =D3, but the actual reason for combining the two
cells is more complicated than explained here.
 
Thanks Roger,
In fact I am trying QuoteCat from QuoteCat.com.

It's purpose is to provide quotes from the sock market.

Here is a sample to get Nortel's quote :

=QCAT|Yahoo!NT.TO\P

The \P is to get the price, there can be different
information that we can get.

Focusing on the part NT.TO wich represent the stock quote,
I want to have a formula that will take this information
from an adjacent cell. In that fashion I can simply copy
and paste all the quotes I want without have to retype the
hole thing for each quotes.

Exemple :
A B
1 NT.TO =QCAT|Yahoo!&A1&\P
2 AC.TO =QCAT|Yahoo!&A2&\P
3 QTC.TO =QCAT|Yahoo!&A3&\P

The results in column B should be the price of the stock
indicated in column A.

Thanks
 

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