Feb 18, 2005 #1 nida66 Programmer Feb 18, 2005 3 GB I have data in a table where I would like a query to return all fields where the length of the text is above a certain value e.g all records where there are more than 10 characters in the text field Is there a nice simple way of doing this? ta!
I have data in a table where I would like a query to return all fields where the length of the text is above a certain value e.g all records where there are more than 10 characters in the text field Is there a nice simple way of doing this? ta!
Feb 18, 2005 #2 traingamer Programmer Jun 18, 2002 3,270 US where len([your field]) > 10 traingamer Upvote 0 Downvote
Feb 18, 2005 Thread starter #3 nida66 Programmer Feb 18, 2005 3 GB sorry am new to access, is this entered into the Criteria field on the query design? Upvote 0 Downvote
Feb 18, 2005 #4 traingamer Programmer Jun 18, 2002 3,270 US Yes - in that case, just put: Len([your field])>"10" in the criteria traingamer Upvote 0 Downvote
Feb 18, 2005 #5 PHV MIS Nov 8, 2002 53,708 FR [tt]Field Expr1: Len([field name]) Display unticked Criteria >10[/tt] Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
[tt]Field Expr1: Len([field name]) Display unticked Criteria >10[/tt] Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
Feb 18, 2005 Thread starter #6 nida66 Programmer Feb 18, 2005 3 GB is working great, thanks guys! Upvote 0 Downvote