I have a form with a search results list box and the search parameters are working great, but it's not returning all fields from the table. I used Select * so it should return all fields from the table I thought.
It's based on a single table. When I open the table itself, it has the field I'm looking for, but when I run the search on the form, it doesn't have the field.
lstSearchResults.RowSource = "SELECT * FROM vw_srch_NameByAddressInfo WHERE LastName LIKE '%" & sSearchText & "%' OR FirstName LIKE '%" & sSearchText & "%' OR Chapter LIKE '%" & sSearchText & "%' OR Company LIKE '%" & sSearchText & "%' OR City LIKE '%" & sSearchText & "%' OR State LIKE '%" & sSearchText & "%' OR Zip LIKE '%" & sSearchText & "%' OR Address LIKE '%" & sSearchText & "%' ORDER BY LastName,FirstName,MiddleName,Title,Chapter"
Any ideas where else I can look that's preventing the one field I really need from populating in the list box?
TIA