I have the following query set up:
SELECT [Account Information].AccountNbr
FROM tblVendorID INNER JOIN [Account Information] ON tblVendorID.VendorID = [Account Information].VendorID
WHERE (((tblVendorID.VendorID)=[Forms]![frmNewAcctSearch]![VendorID]));
I have an AccountNbr i.e. 9223-MSP-1234
I would like to have this number as a link to run another query. The deal is, is that I want the query to search for any record that has 1235 in it (i want it to add 1 number to the last four digits).
Any thoughts?
SELECT [Account Information].AccountNbr
FROM tblVendorID INNER JOIN [Account Information] ON tblVendorID.VendorID = [Account Information].VendorID
WHERE (((tblVendorID.VendorID)=[Forms]![frmNewAcctSearch]![VendorID]));
I have an AccountNbr i.e. 9223-MSP-1234
I would like to have this number as a link to run another query. The deal is, is that I want the query to search for any record that has 1235 in it (i want it to add 1 number to the last four digits).
Any thoughts?