+ Reply to Thread
Results 1 to 18 of 18

Formula that contains currency not returning the results as currency

  1. #1
    Forum Contributor
    Join Date
    10-03-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    134

    Formula that contains currency not returning the results as currency

    I have a spreadsheet that I am combining about 10 columsn into one utilizing the concatenate formula. One of my cells is a currency cell, but when the formula is run it returns XX.XX instead of showing it as currency $xx.xx. What can I do to have it return the cell exactly how it shows in currency? I know that since excel uses $ in formula, that could be the problem. TIA!
    Trish

  2. #2
    Valued Forum Contributor
    Join Date
    07-07-2014
    Location
    Washington DC
    MS-Off Ver
    2007
    Posts
    1,047

    Re: Formula that contains currency not returning the results as currency

    Convert the column that contains currency. If it's USD, (assuming the currency is in Column A), you can use "=Dollar(A1)". Otherwise, you can format the cells using "=text(A1,"$##.##)"

  3. #3
    Forum Contributor stephenloky's Avatar
    Join Date
    07-10-2013
    Location
    Sao Paulo - Brazil
    MS-Off Ver
    Excel 2007
    Posts
    146

    Re: Formula that contains currency not returning the results as currency

    Or you can click in the entire column and Rigth Click > Format Cells > Number > Currency (and Choose USD for example).
    "The quieter you become, the more you are able to hear"

    Any reputation (*) points appreciated.

    "If you know yourself but not the enemy, for every victory gained, you will suffer defeat."

  4. #4
    Forum Contributor
    Join Date
    10-03-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    134

    Re: Formula that contains currency not returning the results as currency

    I am not following. I have 13 columns all together, column 14 puts all of those columns together. column L is currency ie. $30.10, but in column 14 when is shows everything in one column the column that is L shows as 30.10 instead of $30.10. How do I get that number in column L to show as currency $30.10 in column 14. TIA

  5. #5
    Forum Contributor stephenloky's Avatar
    Join Date
    07-10-2013
    Location
    Sao Paulo - Brazil
    MS-Off Ver
    Excel 2007
    Posts
    146

    Re: Formula that contains currency not returning the results as currency

    Go to column L and select it all and do what i've write in my post..

  6. #6
    Forum Contributor
    Join Date
    10-03-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    134

    Re: Formula that contains currency not returning the results as currency

    I did, but it didn't change the way it looked in column 14 where it summarizes everything, it still shows 30.10 instead of $30.10. Do I have to add something in column 14 to make is show the $?

  7. #7
    Forum Contributor stephenloky's Avatar
    Join Date
    07-10-2013
    Location
    Sao Paulo - Brazil
    MS-Off Ver
    Excel 2007
    Posts
    146

    Re: Formula that contains currency not returning the results as currency

    can you post a sample workbook?

  8. #8
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Formula that contains currency not returning the results as currency

    This is the Key
    Quote Originally Posted by Triscia View Post
    I have a spreadsheet that I am combining about 10 columsn into one utilizing the concatenate formula
    Concatenate returns a TEXT string.
    Even if it's result looks like a number, Excel still considers it a Text String.
    Therfor, formatting the cell as currency (or any other number format) will have no effect on it..because it's not a number.

    You could probably just add +0 to the end of the concatenate function to convert it to a real number.
    =CONCATENATE(...,...,...)+0

  9. #9
    Forum Contributor stephenloky's Avatar
    Join Date
    07-10-2013
    Location
    Sao Paulo - Brazil
    MS-Off Ver
    Excel 2007
    Posts
    146

    Re: Formula that contains currency not returning the results as currency

    Nice tip!!! Probably the solution

  10. #10
    Forum Contributor
    Join Date
    10-03-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    134

    Re: Formula that contains currency not returning the results as currency

    That didn't work at all, once I added the +0 to the end I got a return #Value! error.

  11. #11
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Formula that contains currency not returning the results as currency

    What's the actual formula? and it's resulting value?

  12. #12
    Forum Contributor
    Join Date
    10-03-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    134

    Re: Formula that contains currency not returning the results as currency

    Here is the sample. I hope that I did it correctly.
    Attached Files Attached Files

  13. #13
    Valued Forum Contributor
    Join Date
    07-07-2014
    Location
    Washington DC
    MS-Off Ver
    2007
    Posts
    1,047

    Re: Formula that contains currency not returning the results as currency

    You just need to concatenate a "$" into your formula before the reference to Column L. "=concatenate(J1,K1,"$",L1)"

  14. #14
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Formula that contains currency not returning the results as currency

    OK, that's different..

    The number is just one portion of the overall string created by Concatenate.
    but that number is being drawn from B2 which has been formatted as currency.

    You'll have to use the TEXT function on that portion of the concatenate function to apply the same format to that number.

    Try
    =CONCATENATE(A1&":",A2&CHAR(10),B1&": ",TEXT(B2,"[$USD] #,##0.00")," ",C2&CHAR(10),D1&": ",D2)

  15. #15
    Forum Contributor
    Join Date
    10-03-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    134

    Re: Formula that contains currency not returning the results as currency

    Awesome!!!!!! That worked, I tried it before, but I didn't put the comma after it. Do you know why it would only read it as $30.1 instead of the $30.10 that shows in the cell?

  16. #16
    Valued Forum Contributor
    Join Date
    07-07-2014
    Location
    Washington DC
    MS-Off Ver
    2007
    Posts
    1,047

    Re: Formula that contains currency not returning the results as currency

    The last zero you see in Column L is just like the dollar sign. It's not really in the cell, it's just a result of formatting. See Jonmo1's previous post if you'd like to format column L to actually contain both decimal places.

  17. #17
    Forum Contributor
    Join Date
    10-03-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    134

    Re: Formula that contains currency not returning the results as currency

    Thank you both. I got it. Appreciate that help!
    Last edited by Triscia; 07-17-2014 at 03:04 PM. Reason: SOLVED

  18. #18
    Forum Guru Jonmo1's Avatar
    Join Date
    03-08-2013
    Location
    Bryan, TX
    MS-Off Ver
    Excel 2010
    Posts
    9,763

    Re: Formula that contains currency not returning the results as currency

    You're welcome.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Currency conversion insert currency symbol
    By siobeh in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-01-2013, 05:50 AM
  2. currency results for if then formula???
    By will2lewis71 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 04-26-2013, 01:53 PM
  3. [SOLVED] Display results with currency format
    By izlopez in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 06-18-2012, 04:09 AM
  4. Replies: 5
    Last Post: 06-30-2011, 07:48 AM
  5. Currency Formatting-range of number as currency
    By kmurray24 in forum Excel General
    Replies: 1
    Last Post: 01-09-2008, 09:09 AM

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