My dear Marc (with "c", Jajaja): The IsNumeric function (just like IsDate with dates) is not foolproof with numbers either. For example, the following two cases cannot both be TRUE for the same configuration:
But Excel detects the difference.PHP Code:
Sub Test1()
MsgBox "a) 1.234,56 : " & IsNumeric("1.234,56") & vbLf & vbLf & _
"b) 1,234.56 : " & IsNumeric("1,234.56")
End Sub
Bookmarks