Resume Database - HELP PLEASE!!!!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

HELP! I haven't used Access in YEARS!

My form and table is designed with a few additions that need to done. My
problem, is that I am having trouble finding out how to get a query done so
that my report will show only selected infomation.

eg: I want to run a report that will show me only records that have been
selected for callbacks. Or....records only that show active insurance.

I thank you in advance from the bottom of my heart!
 
Because you haven't told us much about the tables, this is a generic way of
writing a SELECT query:

SELECT * FROM TableName
WHERE FieldName = "somevalue";
 
The database literally has names, addresses, phone numbers, etc. There are a
few fields where as we are entering the information, we are checking a yes/no
response to certain items, like car, insurance, etc. It is by these items
that I want to report.

I will attempt your way!
Thanks!!!
 
Back
Top