In MS Access 2008, how do I search for asterisks (*)

As * is a wildcard character that matches any string, it gives me the first row, not the first row containing an asterisks.

2

2 Answers

Enclosing the asterisk in your search string in square brackets, i.e. "[*]", is in fact the correct answer. This is according to Microsoft documentation. And here's the proof:

enter image description here

Works like a charm! Perhaps what you are missing is the "Any Part of Field" setting?

4

Simple solution. Find and Replace will remove an asterisk in Access VER 14 in 2016 MS Office. Just use [*] in the find and nothing in the replace. Access takes anything in the brackets literally so it finds the character and doesn’t treat it like a wildcard. Also don’t put quotes around [*]

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like