Put all the fields you want in your report in a query. Lets say you want to print all the records of where RENTPAID is checked (meaning "yes" in a yes/no datatype field).
On your query grid, there will be a row for Criteria: to the left. Under your field [RENTPAID] and on this criteria line put the work Yes. When you run the query, all records where [RENTPAID] is Yes (checked) will be returned.
Create your form from that query. If you already have the report done and don't want to change it all, open your report in design view, goto the report properties and change the data control source to the query you just made. So long as the field names are the same as they were in the previous data source (which they probably are if it was off of a table), everything will work out fine.
Jack's reference to -1 is the value Access gives to a "Yes". "No" receives a 0 zero value. You could put -1 also versus "Yes" on your criteria.