QUOTE (foxtrojan @ May 17 2012, 07:33 PM)

Thanks so much Ronald. Works perfectly. Is it possible to select multi Customers?
Hello
It is possible using a multi- select list box instead of a combo box for the customers
Make a list box with two columns as in the combo box . Width assume 0,2
In the list box other tab( in design view) set the multi select property to Extended
Here is the air code for button
CODE
Dim varItem as variant
For each varItem in Me.ListBoxName.ItemsSelected
DoCmd.OpenReport "rptName", acViewPreview, , "[CustomeName]='" & Me.CustomerComboBox.Column(1,varItem) & "'" & "and [ProductName]='" & Me.ProductCombobox.Column(1) & "'"
next varItem
try and tweak accordingly to work
Ronald