I am just guessing at what your database looks like but:
I am guessing that in your report you have the reports Record Source set
to
the name of a table. I think that table name is "football players". I
am
also guessing that the Column in the table "football players" that is the
Yes/No column is named "DROPPED OUT".
If all these guesses are correct then copy the line below directly from
this
post and paste it into the Record Source of the report you are working
on.
SELECT * FROM [football players] WHERE [DROPPED OUT] = False
Save the report and run it. If my guesses were wrong then you will need
to
either adjust the names to whatever you have in your data base, or post
back
with ALL the details of what you have and what you want.
Ron W
tjsmags said:
Since I'm new to this, can you please explain EXACTLY what I do?
In the SQL Statement Query Builder I have:
Field: Football players.*
Table: Football players
Sort:
Show: there's a checkmark
Criteria:
or:
I don't know what to fill in...
:
Use a Select statement (query) as the record source for the report.
Something like:
SELECT * FROM [football players] WHERE [DROPPED OUT] = False
Ron W
I have a report that gives me a football roster. One of the FIELDS
in
the
football players TABLE is for DROPPED OUT children (Yes/No). How do
I
tell
the football roster report to leave OFF the children names that have
dropped
out (i.e. there's a checkmark in the yes/no box for dropped out)?