Question : MS Access Report Selection Options

I am not very familiar with Access and I need some help.  
I have a query in a basic 2007 Access database that contains sums of data from a table.  I have a table called AllTypes which contain the following fields;
DELABRNAME, DEL, APT, BUS, FARM, HOUSE
I am using the query to sum APT, BUS, FARM, HOUSE and group by DELABRNAME.  I want to create a report that will all me to include only records from say APT and BUS.  So perhaps an option before running the report to only include, then have checkboxes for those records?  

Answer : MS Access Report Selection Options

Correction...
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
Private Sub Command1_Click()
    strWhere = "1=0 "
    If checkdel.Value = -1 Then
       strWhere = strWhere & "OR DEL<>0"
    End If
    
    If checkbus.Value = -1 Then
      strWhere = strWhere & "OR BUS<>0"
    End If
    
    If checkfarm.Value = -1 Then
       strWhere = strWhere & "OR FARM<>0"
    End If
    
    If checkhouse.Value = -1 Then
       strWhere = strWhere & "OR HOUSE<>0"
    End If
    
    DoCmd.OpenReport "MyReport", acViewPreview, , strWhere
End Sub
Random Solutions  
 
programming4us programming4us