Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

syntax help 1

Status
Not open for further replies.

davyre

Programmer
Oct 3, 2012
197
AU
Hi,
I got this code
Code:
custQtyOrder=dlookup("Qty","TblCustOrderUnit","OrderID=dlookup("custOrderID","TblCustOrder","PONumber=" & PO & ")")

it shows error Expected list separator or )

any help? THanks!
 
custQtyOrder=DLookUp("Qty","TblCustOrderUnit","OrderID=" & DLookUp("custOrderID","TblCustOrder","PONumber=" & PO & ")")

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Hi PHV, are you sure about your code? Because after I copy and paste yours, it still shows error expected list separator or )
 
sory for the typo:
custQtyOrder=DLookUp("Qty","TblCustOrderUnit","OrderID=" & DLookUp("custOrderID","TblCustOrder","PONumber=" & PO))

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top