Jul 12, 2005 #1 JJeremy Technical User May 27, 2005 10 US Hi Everyone, I have two link tables on a query and I want to remove a part number with big "A" and keep the small "a" part. Please help and thanks in advance. JJeremy Analyst Lakewood, CA
Hi Everyone, I have two link tables on a query and I want to remove a part number with big "A" and keep the small "a" part. Please help and thanks in advance. JJeremy Analyst Lakewood, CA
Jul 12, 2005 #2 Blorf Programmer Dec 30, 2003 1,608 US Hi. Access by default will ignore case. Is the A or a the first charachter? If you convert the first charachter to ascii, A gives 65, and a gives 97, so in a query, if your field is called part, you could do this: asc(left (part, 1)) <> 65. ChaZ There Are 10 Types Of People In The world: Those That Understand BINARY And Those That Don’t. Upvote 0 Downvote
Hi. Access by default will ignore case. Is the A or a the first charachter? If you convert the first charachter to ascii, A gives 65, and a gives 97, so in a query, if your field is called part, you could do this: asc(left (part, 1)) <> 65. ChaZ There Are 10 Types Of People In The world: Those That Understand BINARY And Those That Don’t.