Hi
I have 35000 records and I have a field designated
Yearofbaptism. The field is formatted text and contains records such as the following
1856
1856/57
I want to create a query that will only show the records with 5 characters or more.
I created the following sql but it does not do what I want
Where have I gone wrong?Code:SELECT tbl_Baptism.YearOfBaptism, tbl_Baptism.FullDateOfBaptism FROM tbl_Baptism WHERE ((("len [yearofbaptism]")>"5"));
thanks
Ian