Dlookup

Inusah

New member
Local time
Today, 05:02
Joined
Jul 19, 2022
Messages
2
I have a table named frmNew with 3 fields; CustomerNo, Except and Status.
The status can either be open or closed.

I have a form named, frmNew with 3 text boxes of txtCusNo, Except.

I want a vba code (preferrably, with Dlookup) that will look up the CustomerNo on the table anytime a customer number is specified in the txtCusNo and if the status is open, it should show a messagebox of "I like this".
 
Why not have a combo box with all three fields as columns and simply use that to select your customer number and display the status at the same time.

It also prevents typing in a non-existent customer number.
 
I have a table named frmNew with 3 fields; CustomerNo, Except and Status.
The status can either be open or closed.

I have a form named, frmNew with 3 text boxes of txtCusNo, Except.

I want a vba code (preferrably, with Dlookup) that will look up the CustomerNo on the table anytime a customer number is specified in the txtCusNo and if the status is open, it should show a messagebox of "I like this".
Here you go.

 

Users who are viewing this thread

Back
Top Bottom