winklestork Posted June 26, 2006 Posted June 26, 2006 I can find digits (#), and characters (@), but how do you find letters? ie [a-z][A-Z]
winklestork Posted June 27, 2006 Author Posted June 27, 2006 More specifically, how do you find letters in a numeric field. If there are no numbers, e.g. "None", the symbol "?" will find it. But if there is a digit, e.g. "5 more", then I can't find it. a..z (or a...z) won't do it.
LaRetta Posted June 27, 2006 Posted June 27, 2006 I believe you will need a calculation. But this is one of the reasons mixing can be a problem. Sometimes we have no choice (which appears like your situation). Try a calculation, number of: Length ( numField) ≠ Length ( Filter ( numField ; "0123456789" ) ) Search for a 1 in this calc. Or this one: Length ( Filter ( Upper ( numField ); "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ) ) Search for > 0. Or this one: not Length ( Filter ( Upper ( text ); "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ) ) Search for 0.
Recommended Posts
This topic is 6728 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now