Hi. How can I perform search on 'item below re order level' my VB, which was connected to Access? What are the codes? Thank you.
Dim Result As String
search = "[Quantity in Stock]" < "[Reorder Level]"
With Product.Recordset
.MoveFirst
.Find Result
If .EOF Then
MoveFirst
MsgBox "Not found."
End If
End With
Ps: the codes above don't work.Error seems to occur on the codes which are bold. Help
Ms.RMMAL.US