trying to return the record where:
txtType = me.txtType (there will most likely be several records)
and
that record (of those that match) that has the lowest value for the field lngPrintOrder
strSearch = "[txtType] = '" & Me.txtType & "'" <--- works!
strSearch = "[txtType] = '" & Me.txtType & "' and [lngPrintOrder] = min([lngPrintOrder])" <--- this does NOT !
with thanks in advance,
Mark