Do you want to suppress the field, or exclude the entire record from your report? These are totally different things. Software Sales, Training, Implementation and Support for Exact Macola, eSynergy, and Crystal Reports
The difficulty is the string check, the numeric is simple, your formula is close to checking if ALL of the characters are numbers, but not the first 3, and not individually, I can't recall if CR has an IsString (I'm not at a CR machine right now), I don't think so, so just use:
isnumeric(mid(Descr1,1,1))
or
isnumeric(mid(Descr1,2,1))
or
isnumeric(mid(Descr1,3,1))
or
not(isnumeric(mid(Descr1,4,2)))
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.