Hi I have some numbers like....
1.00
1.50
1.55
11.55
112.47
2344.76 etc. I want to find the value after the decimal point.
how to do it?
Printable View
Hi I have some numbers like....
1.00
1.50
1.55
11.55
112.47
2344.76 etc. I want to find the value after the decimal point.
how to do it?
VB Code:
Private Sub Command1_Click() Dim d As Double d = 11232.345446 MsgBox d - Int(d) End Sub