+ Reply to Thread
Results 1 to 17 of 17

How to format a number

Hybrid View

YNWA How to format a number 06-19-2012, 06:49 PM
YNWA Re: How to format a number 06-19-2012, 06:51 PM
Russell Dawson Re: How to format a number 06-19-2012, 07:01 PM
shg Re: How to format a number 06-19-2012, 07:15 PM
YNWA Re: How to format a number 06-20-2012, 08:16 AM
shg Re: How to format a number 06-20-2012, 09:25 AM
YNWA Re: How to format a number 06-20-2012, 09:38 AM
shg Re: How to format a number 06-20-2012, 11:57 AM
YNWA Re: How to format a number 06-20-2012, 12:14 PM
shg Re: How to format a number 06-20-2012, 01:31 PM
YNWA Re: How to format a number 06-21-2012, 04:28 AM
shg Re: How to format a number 06-21-2012, 04:13 PM
YNWA Re: How to format a number 06-21-2012, 05:09 PM
shg Re: How to format a number 06-21-2012, 05:13 PM
YNWA Re: How to format a number 06-21-2012, 05:19 PM
shg Re: How to format a number 06-21-2012, 05:26 PM
YNWA Re: How to format a number 06-21-2012, 05:34 PM
  1. #1
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    How to format a number

    Hi,

    I need a cell to format or input mask after input. The number is an electricity meter reading.

    The number always starts with 00, so this needs to be at the front but ideally the user shouldn't have to type the 00 part.

    So the format I need is 00 XXX XXX XX XXXX XXXX XXX.

    Thats 00 followed by 3, 3, 2, 4, 4, 3 digits. So 19 numbers, plus the 00 at the front = 21 numbers.

    Any ideas?

    I just cant get mine to work, trying "00"#,###,###,##,####,####,###

  2. #2
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: How to format a number

    In fact I done "00" ### ### ## #### #### ### and I seem to have it.

  3. #3
    Forum Contributor Russell Dawson's Avatar
    Join Date
    03-01-2012
    Location
    Yorkshire, England
    MS-Off Ver
    2007
    Posts
    608

    Re: How to format a number

    Please don't forget to mark your thread as solved.
    If I helped, please don't forget to add to my reputation. (click on the star below the post)

    If the problem is solved, please: Select Thread Tools (on top of your 1st post) -> Mark this thread as Solved.

    Failure is not falling down but refusing to get up.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to format a number

    Notice that the last four digits are always 0?
    Last edited by shg; 06-19-2012 at 07:22 PM.
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: How to format a number

    Quote Originally Posted by shg View Post
    Notice that the last four digits are always 0?
    So it is, missed that. Can you help?

    Thanks

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to format a number

    Excel doesn't store numbers with more than 15-digit precision. Your meter-reading results need to be text.

  7. #7
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: How to format a number

    Ah ok. Is it possible to have the outcome formatting to show as XX XXX XXX XX XXXX XXXX XXX? No need to store 0's etc..., just re-jig the view once number entered?

  8. #8
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to format a number

    I reckon.

    How are you planning to subtract readings to get usage?

  9. #9
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: How to format a number

    Sorry its not a meter reading its an account number. for display purposes only

  10. #10
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to format a number

    Code goes in the appropriate sheet module:

    Private Sub Worksheet_Change(ByVal Target As Range)
        With Target(1)
            If .Column = 1 And VarType(.Value) = vbString Then
                On Error GoTo Oops
                Application.EnableEvents = False
                .Value = Format(Replace(.Value, " ", ""), """00""@@ @@@ @@@ @@ @@@@ @@@@ @@@")
    Oops:
                Application.EnableEvents = True
            End If
        End With
    End Sub

  11. #11
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: How to format a number

    Quote Originally Posted by shg View Post
    Code goes in the appropriate sheet module:

    Private Sub Worksheet_Change(ByVal Target As Range)
        With Target(1)
            If .Column = 1 And VarType(.Value) = vbString Then
                On Error GoTo Oops
                Application.EnableEvents = False
                .Value = Format(Replace(.Value, " ", ""), """00""@@ @@@ @@@ @@ @@@@ @@@@ @@@")
    Oops:
                Application.EnableEvents = True
            End If
        End With
    End Sub
    Thanks but how does it know which cell to format?

  12. #12
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to format a number

    It formats entries you make in col A.

  13. #13
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: How to format a number

    Quote Originally Posted by shg View Post
    It formats entries you make in col A.
    How could I make it work for sale a merged column say B20 through F20.?

  14. #14
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to format a number

    Post a workbook after you've unmerged the cells.

  15. #15
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: How to format a number

    Quote Originally Posted by shg View Post
    Post a workbook after you've unmerged the cells.
    Sorry I dont follow?

  16. #16
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: How to format a number

    1. Unmerge the cells you have merged.

    2. Post the workbook and explain where you enter the meter numbers.

    I don't help people work with merged cells. I took an oath.

  17. #17
    Registered User
    Join Date
    06-08-2012
    Location
    UK
    MS-Off Ver
    Excel 2010
    Posts
    19

    Re: How to format a number

    Sorry I can't post the sheets as they contain personal data.

    I will unmerge the cell, so go off cell E20?

+ 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