Thnaks mate!!
Thats exactly what I want, I'll do a string search for the rogue "D" or "E"
using the "instr" function
Many thnaks again!!
cheers,
"John W. Vinson" wrote:
> On Thu, 18 Feb 2010 15:28:01 -0800, DontKnow
> <(E-Mail Removed)> wrote:
>
> >hi Guys,
> >
> >I need a way to determine if an single entry is a character or is a number...
> >
> >Please helpme!!
> >
> >Cheers
>
> Well, a number *is* a character...
>
> The IsNumeric() function will return TRUE if its string argument is a valid
> number: e.g. IsNumeric("345") is True, IsNumeric("a45") is false.
>
> There's a tricky little "gotcha" though: if the argument is a valid number in
> the old, old Fortran Floating Point notation, such as "31E5" or "2D30"
> (corresponding to 31 * 10^5 or 2 * 10^30) it will be true, though you might
> consider these to be text.
> --
>
> John W. Vinson [MVP]
> .
>
|