Jan 2, 2004 #1 gusset Technical User Mar 19, 2002 251 GB please can someone remind me how to search in a query for records starting with an upper case character? thanks gusset
please can someone remind me how to search in a query for records starting with an upper case character? thanks gusset
Jan 2, 2004 1 #2 dhookom Programmer Jun 24, 2003 22,497 US You could find the ASC(Left([YourField],1)) and compare it with the ASC() values of A - Z Between ASC("A" AND ASC("Z" Duane MS Access MVP Find out how to get great answers faq219-2884. Upvote 0 Downvote
You could find the ASC(Left([YourField],1)) and compare it with the ASC() values of A - Z Between ASC("A" AND ASC("Z" Duane MS Access MVP Find out how to get great answers faq219-2884.
Jan 2, 2004 Thread starter #3 gusset Technical User Mar 19, 2002 251 GB many thanks, dhookom gusset Upvote 0 Downvote
Jan 2, 2004 1 #4 Blorf Programmer Dec 30, 2003 1,608 US Criteria Like below: Asc(Left([Your field],1)) Between "65" And "91" ChaZ Upvote 0 Downvote
Jan 2, 2004 Thread starter #5 gusset Technical User Mar 19, 2002 251 GB ...and also to you, blorf Upvote 0 Downvote