+ Reply to Thread
Results 1 to 4 of 4

Formulas in a cell

  1. #1
    Registered User
    Join Date
    08-10-2005
    Posts
    2

    Formulas in a cell

    Hi, new the the forum....
    I needed some help regarding formulas and text in one cell. What i'm trying to do is develop a simple formula to calculate a simple number.
    The formula i have is: =(R3*12)-((R3*12)*0.1)

    But the problem (or myabe not a problem ) is that i need it to show as such: $103.57;1;NO;Case Price

    Is it possible to have a formula and text in the same cell, if so, how?

    Any help would be appreciated. Thanks.

    Saurabh

  2. #2
    Registered User
    Join Date
    06-16-2005
    Posts
    68

    Formula Help

    The formula i have is: =(R3*12)-((R3*12)*0.1)

    But the problem (or myabe not a problem ) is that i need it to show as such: $103.57;1;NO;Case Price


    I'm not 100% sure that I follow - are there any criteria that determine what text will follow the value? If not, you can concatenate as follows:

    =(R3*12)-((R3*12)*0.1)&";1;NO;Case Price"

    This should do the trick. If there are formulas to determine the 1, NO and Case Price, then you can connect them using &. The & serves as a connector - you just have to be sure that any text has " before and after it. Let me know if you have other questions - Chad

  3. #3
    Peo Sjoblom
    Guest

    Re: Formulas in a cell

    One way

    =TEXT((R3*12)-((R3*12)*0.1),"$#,##0.00")&";1;NO;Case Price"


    You could also use a custom format like


    $#,##0.00";1;NO;Case Price"

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "sabrol" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi, new the the forum....
    > I needed some help regarding formulas and text in one cell. What i'm
    > trying to do is develop a simple formula to calculate a simple number.
    > The formula i have is: =(R3*12)-((R3*12)*0.1)
    >
    > But the problem (or myabe not a problem ) is that i need it to show
    > as such: $103.57;1;NO;Case Price
    >
    > Is it possible to have a formula and text in the same cell, if so, how?
    >
    >
    > Any help would be appreciated. Thanks.
    >
    > Saurabh
    >
    >
    > --
    > sabrol
    > ------------------------------------------------------------------------
    > sabrol's Profile:
    > http://www.excelforum.com/member.php...o&userid=26156
    > View this thread: http://www.excelforum.com/showthread...hreadid=394807
    >



  4. #4
    Registered User
    Join Date
    08-10-2005
    Posts
    2
    awesome, i'm going to try it out and i'm sure it should work. Thanks guys!

+ 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