Consulting

Results 1 to 3 of 3

Thread: Number help

  1. #1
    VBAX Regular
    Joined
    Aug 2019
    Posts
    54
    Location

    Number help

    Hi to anyone .Can anyone to tell me how can transform this form number (scr51.jpg to a normal number?
    Thank you for your time

  2. #2
    VBAX Guru Kenneth Hobs's Avatar
    Joined
    Nov 2005
    Location
    Tecumseh, OK
    Posts
    4,956
    Location
    If you mean get the number value then use Val().

  3. #3
    Knowledge Base Approver VBAX Wizard
    Joined
    Apr 2012
    Posts
    5,645
    Sub M_snb()
        c00 = "6,999999932E-02"
        MsgBox CDbl(c00)
        MsgBox Format(CDbl(c00))
    
        labdiffer.caption=format(cdbl(exactcal))
    End Sub

Posting Permissions

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