Consulting

Results 1 to 3 of 3

Thread: Showing numbers in 1000's, but not rounded

  1. #1

    Showing numbers in 1000's, but not rounded

    All-

    I need help to show numbers in thousands, but Excel keeps rounding it, which I don't want.

    For example, if I had $69,359.47, I really want the cell to be $69.3 (I'm using this number to concatenate it with some other strings/fields).

    If I divide it by 1000, excel rounds up to $69.4

    I tried to use the LEN function, but sometimes people put actual decimals vs. no decimals, so I can't tell the difference in cutoff between 2 or 4 characters.

    Can someone help with this formula?
    Attached Files Attached Files

  2. #2
    VBAX Sage
    Joined
    Apr 2007
    Location
    United States
    Posts
    8,711
    Location
    =--TEXT(A2-50,"#,.0")
    that's

    minus minus TEXT( A2-50, quote pound comma period 0 quote)


    Capture.JPG
    ---------------------------------------------------------------------------------------------------------------------

    Paul


    Remember: Tell us WHAT you want to do, not HOW you think you want to do it

    1. Use [CODE] ....[/CODE ] Tags for readability
    [CODE]PasteYourCodeHere[/CODE ] -- (or paste your code, select it, click [#] button)
    2. Upload an example
    Go Advanced / Attachments - Manage Attachments / Add Files / Select Files / Select the file(s) / Upload Files / Done
    3. Mark the thread as [Solved] when you have an answer
    Thread Tools (on the top right corner, above the first message)
    4. Read the Forum FAQ, especially the part about cross-posting in other forums
    http://www.vbaexpress.com/forum/faq...._new_faq_item3

  3. #3
    Thanks for your help Paul! I tried/reviewed it and it's working as I was hoping.

    I really appreciate your help, hope you have a great rest of your day.

Posting Permissions

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