If i have a field where all entries should be 10 characters in length (a phone number, no formatting), and the in the table, i set the length of the Phone field to be 10 characters, max, AND I make a query and in the Phone field of the query i say
Len([Phone])>7
That should return all records who's phone number is 8, 9 or 10 digits in length, correct?
Problem is, it is only returning records whose phone number is 8 or 9 digits in length. Not those with 10.
Using Len([Phone])>9 does not return the records with 10 digit length. The only way I can get those records to show up in the query is to state it:
Len([Phone])=10.
FYI, I created a field in the query Expr1:Len([Phone]) and it lists all those records as having phone numbers with a length of 10.
Last time I checked 10 was greater than 7. Does anyone have any idea why it wouldn't return those entries using >7?
Len([Phone])>7
That should return all records who's phone number is 8, 9 or 10 digits in length, correct?
Problem is, it is only returning records whose phone number is 8 or 9 digits in length. Not those with 10.
Using Len([Phone])>9 does not return the records with 10 digit length. The only way I can get those records to show up in the query is to state it:
Len([Phone])=10.
FYI, I created a field in the query Expr1:Len([Phone]) and it lists all those records as having phone numbers with a length of 10.
Last time I checked 10 was greater than 7. Does anyone have any idea why it wouldn't return those entries using >7?