Access Guru's...<br>Please tell me how to LinkCriteria from a multiple selection in a List box to a report. I am playing around with the following code but somethings missing.<br>Thanks for any assistance.<br>SMC<br><br> Dim stDocName As String<br> Dim stLinkCriteria As String<br> Dim frm As Form, ctl As Control<br> Dim varItm As Variant<br> Set frm = Forms!frmFPSearch<br> Set ctl = frm!List0<br> <br> stDocName = "FpSupplierProductList"<br> <br> For Each varItm In ctl.ItemsSelected<br> stLinkCriteria = "[ID]=" & ctl.ItemData(varItm)<br> Next varItm<br> DoCmd.OpenReport stDocName, acPreview, stLinkCriteria<br>