+ Reply to Thread
Results 1 to 6 of 6

Help inserting a Cell Value in a Text Cell

  1. #1
    Dave
    Guest

    Help inserting a Cell Value in a Text Cell

    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



  2. #2
    RagDyeR
    Guest

    Re: Help inserting a Cell Value in a Text Cell

    Try this:

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

    HTH,

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


    "Dave" <davekstl@charter.net> wrote in message
    news:35lWd.32$Gs5.22@fe03.lga...
    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




  3. #3
    Dave
    Guest

    Re: Help inserting a Cell Value in a Text Cell

    That worked -THANKS

    But another question, the number comes out as .049999999

    How do I show it as a Formated percentage number ?

    Thanks again!



    "RagDyeR" <ragdyer@cutoutmsn.com> wrote in message
    news:eYK$bCaIFHA.580@TK2MSFTNGP15.phx.gbl...
    > Try this:
    >
    > ="Interest Rate "&A1&" %"
    > --
    >
    > HTH,
    >
    > RD
    > ==============================================
    > Please keep all correspondence within the Group, so all may benefit!
    > ==============================================
    >
    >
    > "Dave" <davekstl@charter.net> wrote in message
    > news:35lWd.32$Gs5.22@fe03.lga...
    > 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
    >
    >
    >




  4. #4
    RagDyeR
    Guest

    Re: Help inserting a Cell Value in a Text Cell

    Does this work for you:

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

    HTH,

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


    "Dave" <davekstl@charter.net> wrote in message
    news:0soWd.34316$lN3.10994@fe06.lga...
    That worked -THANKS

    But another question, the number comes out as .049999999

    How do I show it as a Formated percentage number ?

    Thanks again!



    "RagDyeR" <ragdyer@cutoutmsn.com> wrote in message
    news:eYK$bCaIFHA.580@TK2MSFTNGP15.phx.gbl...
    > Try this:
    >
    > ="Interest Rate "&A1&" %"
    > --
    >
    > HTH,
    >
    > RD
    > ==============================================
    > Please keep all correspondence within the Group, so all may benefit!
    > ==============================================
    >
    >
    > "Dave" <davekstl@charter.net> wrote in message
    > news:35lWd.32$Gs5.22@fe03.lga...
    > 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
    >
    >
    >





  5. #5
    Dave
    Guest

    Re: Help inserting a Cell Value in a Text Cell

    That did it :-)

    Thanks!!


    "RagDyeR" <ragdyer@cutoutmsn.com> wrote in message
    news:%23AaIkFcIFHA.2640@TK2MSFTNGP09.phx.gbl...
    > Does this work for you:
    >
    > ="Interest Rate "&TEXT(A1,"#0.00%")
    > --
    >
    > HTH,
    >
    > RD
    > ==============================================
    > Please keep all correspondence within the Group, so all may benefit!
    > ==============================================
    >
    >
    > "Dave" <davekstl@charter.net> wrote in message
    > news:0soWd.34316$lN3.10994@fe06.lga...
    > That worked -THANKS
    >
    > But another question, the number comes out as .049999999
    >
    > How do I show it as a Formated percentage number ?
    >
    > Thanks again!
    >
    >
    >
    > "RagDyeR" <ragdyer@cutoutmsn.com> wrote in message
    > news:eYK$bCaIFHA.580@TK2MSFTNGP15.phx.gbl...
    >> Try this:
    >>
    >> ="Interest Rate "&A1&" %"
    >> --
    >>
    >> HTH,
    >>
    >> RD
    >> ==============================================
    >> Please keep all correspondence within the Group, so all may benefit!
    >> ==============================================
    >>
    >>
    >> "Dave" <davekstl@charter.net> wrote in message
    >> news:35lWd.32$Gs5.22@fe03.lga...
    >> 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
    >>
    >>
    >>

    >
    >
    >




  6. #6
    RagDyeR
    Guest

    Re: Help inserting a Cell Value in a Text Cell

    Appreciate the feed-back.
    --

    Regards,

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

    "Dave" <davekstl@charter.net> wrote in message
    news:q7pWd.78$wV.71@fe03.lga...
    That did it :-)

    Thanks!!


    "RagDyeR" <ragdyer@cutoutmsn.com> wrote in message
    news:%23AaIkFcIFHA.2640@TK2MSFTNGP09.phx.gbl...
    > Does this work for you:
    >
    > ="Interest Rate "&TEXT(A1,"#0.00%")
    > --
    >
    > HTH,
    >
    > RD
    > ==============================================
    > Please keep all correspondence within the Group, so all may benefit!
    > ==============================================
    >
    >
    > "Dave" <davekstl@charter.net> wrote in message
    > news:0soWd.34316$lN3.10994@fe06.lga...
    > That worked -THANKS
    >
    > But another question, the number comes out as .049999999
    >
    > How do I show it as a Formated percentage number ?
    >
    > Thanks again!
    >
    >
    >
    > "RagDyeR" <ragdyer@cutoutmsn.com> wrote in message
    > news:eYK$bCaIFHA.580@TK2MSFTNGP15.phx.gbl...
    >> Try this:
    >>
    >> ="Interest Rate "&A1&" %"
    >> --
    >>
    >> HTH,
    >>
    >> RD
    >> ==============================================
    >> Please keep all correspondence within the Group, so all may benefit!
    >> ==============================================
    >>
    >>
    >> "Dave" <davekstl@charter.net> wrote in message
    >> news:35lWd.32$Gs5.22@fe03.lga...
    >> 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
    >>
    >>
    >>

    >
    >
    >





+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1