Quote Originally Posted by Resilience View Post
no no no.....

it returns the Integer portion of the numerical value of the string
Wrong, wrong, wrong! Read post 7 by Cube8. What he posted is verbatim from the MSDN Library. If you're still a skeptic then run this..

Code:
Option Explicit

Private Sub Form_Load()
   Dim Data
   Data = "bgh12uhj"
   Me.Caption = Int(Data)        ' Error, error, error....
End Sub