+ Reply to Thread
Results 1 to 14 of 14

Two decimal numbers only

Hybrid View

Mhabashy Two decimal numbers only 08-21-2024, 10:55 AM
AliGW Re: Two decimal numbers only 08-21-2024, 10:58 AM
Mhabashy Re: Two decimal numbers only 08-21-2024, 11:04 AM
AliGW Re: Two decimal numbers only 08-21-2024, 11:06 AM
MrShorty Re: Two decimal numbers only 08-21-2024, 11:19 AM
Mhabashy Re: Two decimal numbers only 08-21-2024, 11:33 AM
ByteMarks Re: Two decimal numbers only 08-21-2024, 11:53 AM
Mhabashy Re: Two decimal numbers only 08-22-2024, 04:13 AM
AliGW Re: Two decimal numbers only 08-22-2024, 05:32 AM
Mhabashy Re: Two decimal numbers only 08-22-2024, 06:09 AM
ByteMarks Re: Two decimal numbers only 08-22-2024, 05:41 AM
Mhabashy Re: Two decimal numbers only 08-22-2024, 06:18 AM
JeteMc Re: Two decimal numbers only 08-22-2024, 10:35 AM
Sintek Re: Two decimal numbers only 08-22-2024, 10:38 AM
  1. #1
    Registered User
    Join Date
    06-28-2022
    Location
    KSA
    MS-Off Ver
    Microsoft Office Professional Plus 2019
    Posts
    54

    Two decimal numbers only

    Hello every one,
    i need to write a code to be as a private sub for a sheets, to have only two decimal numbers if the number has more than two decimal numbers not all numbers
    iam using the following formula:
    Sub bbbb()
     Range("A18:C30").NumberFormat = "0.00"
     Range("D3:D14").NumberFormat = "0.00"
    End Sub
    the problem its converted even the single number which was without decimel ex (25.00) i need it to be as its (25)

    i need the result to be for the only if there is decimal number and the code to work automatic in the sheet like private sub

    thanks for your support,
    Last edited by Mhabashy; 08-21-2024 at 11:03 AM.

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,540

    Re: Two decimal numbers only

    Please don't SHOUT at us (all CAPS is considered as shouting online, and is very hard to read).

    Kindly replace the text in your post with sentence case. You can do this by pasting the text into Word, changing it there and then copying back.

    Thank you.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  3. #3
    Registered User
    Join Date
    06-28-2022
    Location
    KSA
    MS-Off Ver
    Microsoft Office Professional Plus 2019
    Posts
    54

    Re: Two decimal numbers only

    Sorry
    Please accept my apologies,

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,540

    Re: Two decimal numbers only

    Much better - I can read it now. Thank you.

  5. #5
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,391

    Re: Two decimal numbers only

    IME, exactly what you are asking for cannot be achieved with number formatting alone. If you can tolerate the decimal point being displayed with integers (25. instead of 25), then the same number format using # or ? as the placeholder instead of 0 will work: .Numberformat="#.##" or .NumeberFormat="?.??"

    If you cannot tolerate seeing the decimal point with integers, then you will need conditional formatting or a block If to choose the number formatting based on a test of whether the cell contains an integer or not. Something like (using VBA to test the condition and choose the number format):
    Set mycell=Range...
    If Int(mycell.Value)=mycell.value then
    mycell.NumberFormat="0"
    Else
    mycell.NumberFormat="0.##"
    End If
    help file explaining the meaning of placeholders in number format codes: https://support.microsoft.com/en-us/...rs=en-us&ad=us
    help file for conditional formatting (see the section on using a formula to choose how to format cells): https://support.microsoft.com/en-us/...b-f1951ff89d7f

    Does that help?
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  6. #6
    Registered User
    Join Date
    06-28-2022
    Location
    KSA
    MS-Off Ver
    Microsoft Office Professional Plus 2019
    Posts
    54

    Re: Two decimal numbers only

    MrShorty thanks for your reply , but the code is not working can you check again please.
    its not accepting
    Set mycell=Range...
    iam doing
    Sub ccc()
    Set mycell = Range(J4, V12)
    If Int(mycell.Value) = mycell.Value Then
    mycell.NumberFormat = "0"
    Else
    mycell.NumberFormat = "0.##"
    End If
    End Sub
    run time error 1004
    Last edited by Mhabashy; 08-21-2024 at 11:43 AM.

  7. #7
    Forum Expert
    Join Date
    07-23-2018
    Location
    UK
    MS-Off Ver
    O365 32bit (Windows)
    Posts
    2,985

    Re: Two decimal numbers only

    Could use conditional formatting
    Attached Images Attached Images

  8. #8
    Registered User
    Join Date
    06-28-2022
    Location
    KSA
    MS-Off Ver
    Microsoft Office Professional Plus 2019
    Posts
    54

    Re: Two decimal numbers only

    I tried the conditional formatting but its not give me what I need and actually its 100s of sheets so its difficult to work with conditional formatting its better if there is VBA and to copy and baste for all sheets
    I need the VBA to check the number and to change the decimal to be two only if there are more than 2 EX:

    5.24568 = 5.25
    5.24368 = 5.24
    5.24 = 5.24
    5 = 5

  9. #9
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2503 (Windows 11 Home 24H2 64-bit)
    Posts
    90,540

    Re: Two decimal numbers only

    5.24 = 5.24
    This is NOT more than 2 - it's more than 1. So which is it that you want?

  10. #10
    Registered User
    Join Date
    06-28-2022
    Location
    KSA
    MS-Off Ver
    Microsoft Office Professional Plus 2019
    Posts
    54

    Re: Two decimal numbers only

    If its 2 so keep it if its more so make it 2 (my max is 2).

  11. #11
    Forum Expert
    Join Date
    07-23-2018
    Location
    UK
    MS-Off Ver
    O365 32bit (Windows)
    Posts
    2,985

    Re: Two decimal numbers only

    This formula produces the desire result with General formatting.
    Could always implement it with VBA if you need to.

    Formula: copy to clipboard
    =IF(MOD(A1,1)=0,A1,ROUND(A1,2))

  12. #12
    Registered User
    Join Date
    06-28-2022
    Location
    KSA
    MS-Off Ver
    Microsoft Office Professional Plus 2019
    Posts
    54

    Re: Two decimal numbers only

    Attachment 877503

    I tried the formula but some changed and some not
    =IF(MOD(A1,1)=0,A1,ROUND(A1,2))

  13. #13
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 365 version 2501
    Posts
    18,903

    Re: Two decimal numbers only

    Selecting attachment 877503 results in the following error message: "Invalid Attachment specified. If you followed a valid link, please notify the administrator".
    Consider taking the time to add to the reputation of everybody that has taken the time to respond to your query.

  14. #14
    Forum Guru Sintek's Avatar
    Join Date
    12-04-2015
    Location
    Cape Town
    MS-Off Ver
    2013 | 2019 | 2021
    Posts
    14,958

    Re: Two decimal numbers only

    If you are wanting when the user enters a number into a specific cell and have the code change the number formatting automatically then you will need a sheet event...
    what is the range required for this...Will help with a sample file showing before|after scenario though....
    Last edited by Sintek; 08-22-2024 at 10:50 AM.
    Good Luck...
    I don't presume to know what I am doing, however, just like you, I too started somewhere...
    One-day, One-problem at a time!!!
    If you feel I have helped, please click on the [★ Add Reputation] to left of post window...
    Also....Add a comment if you like!!!!
    And remember...Mark Thread as Solved...
    Excel Forum Rocks!!!

+ 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. Formula of two 2-decimal numbers returns an extended decimal number
    By Matt Triplenichol in forum Excel General
    Replies: 1
    Last Post: 08-09-2022, 05:44 PM
  2. Replies: 1
    Last Post: 05-03-2022, 05:13 AM
  3. [SOLVED] Subtraction of 2 decimal place numbers giving 12 decimal place answer
    By njb212 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 01-22-2018, 09:35 PM
  4. Replies: 4
    Last Post: 12-17-2015, 12:33 AM
  5. Replies: 3
    Last Post: 08-28-2013, 08:45 AM
  6. Replies: 4
    Last Post: 12-26-2012, 05:37 AM
  7. [SOLVED] How can I sort mostly 3 decimal with some 4 decimal numbers
    By PeterM in forum Excel General
    Replies: 4
    Last Post: 08-15-2006, 09:20 PM

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