SELECT Equipment_Spec.Picture, Equipment.Unit_Cost, Equipment.Quantity_Purchase, [Unit_Cost]*[Quantity_Purchase] AS Total, Equipment.Project_Name, Equipment.Supplier_Name, Equipment.[Location/Affiliate_Name], Equipment_Spec.Description
FROM Equipment INNER JOIN Equipment_Spec ON Equipment.Equipment_ID = Equipment_Spec.ID;
If Not IsNull(Me.cboSupplier) Then
strWhere = strWhere & "([Supplier_Name] = """ & Me.cboSupplier & """) AND "
End If
If Not IsNull(Me.cboSupplier.Column(1)) Then
strWhere = strWhere & "([Supplier_Name] = """ & Me.cboSupplier.Column(1) & """) AND "
End If