andrewwatson
Programmer
If you pass ISNUMERIC a string containing a floating point number in scientific format (eg 1.23E4), it returns 1 (i.e. it is a number). However, if you then try to convert (explicit or implicit) this string to Decimal , you get a data conversion error.
Is there any way of converting such numbers easily (I'd rather not have to scan the string for "E"s and multiply by powers of ten if I can avoid it.
Is there any way of converting such numbers easily (I'd rather not have to scan the string for "E"s and multiply by powers of ten if I can avoid it.