Help inserting a Cell Value in a Text Cell

D

Dave

I have a cell at the top of a column with Text identifying the column below.

I want to use the value in another cell in this text field.

Example Cell A1 = 5 Text Cell B1 = Interest Rate "A1" %

So the end result would be Interest Rate 5 %

Example Cell A1 = 8 Text Cell B1 = Interest Rate "A1" %

So the end result would be Interest Rate 8 %

How do I do this?

Thanks
 
R

RagDyeR

Try this:

="Interest Rate "&A1&" %"
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


I have a cell at the top of a column with Text identifying the column below.

I want to use the value in another cell in this text field.

Example Cell A1 = 5 Text Cell B1 = Interest Rate "A1" %

So the end result would be Interest Rate 5 %

Example Cell A1 = 8 Text Cell B1 = Interest Rate "A1" %

So the end result would be Interest Rate 8 %

How do I do this?

Thanks
 
D

Dave

That worked -THANKS

But another question, the number comes out as .049999999

How do I show it as a Formated percentage number ?

Thanks again!
 
R

RagDyeR

Does this work for you:

="Interest Rate "&TEXT(A1,"#0.00%")
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


That worked -THANKS

But another question, the number comes out as .049999999

How do I show it as a Formated percentage number ?

Thanks again!
 
D

Dave

That did it :)

Thanks!!


RagDyeR said:
Does this work for you:

="Interest Rate "&TEXT(A1,"#0.00%")
--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


That worked -THANKS

But another question, the number comes out as .049999999

How do I show it as a Formated percentage number ?

Thanks again!
 

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

Top