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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Query/Dlookup problem in access form

Status
Not open for further replies.

load3d

Programmer
Feb 27, 2008
117
US
SELECT [EquipmentReport].[Equipment#], [EquipmentReport].CurrentHours
FROM [EquipmentReport]
WHERE ((([EquipmentReport].[Equipment#])=[Forms]![Mainform]![subform].[form]![controlname]));

The query works when I test outside of the form and enter in a value manually.

on the save button of the form after all data is entered I have the Dlookup statement

me.controlname = Dlookup("CurrentHours", "QueryName")

However, the field stays blank. This tells me the problem is in the WHERE statment but I can't figure out what the problem is. The syntax matches what I use in update queries.
 
Try:

Code:
me.controlname = Dlookup("CurrentHours", "EquipmentReport","[Equipment#]=[Forms]![Mainform]![subform].[form]![controlname]")
 
If the code is running in the MainForm, you should be able to use:
Code:
me.controlname = Dlookup("CurrentHours", "EquipmentReport", "[Equipment#]=" & Me.[subform].[form]![controlname])
If Equipment# is text rather than numeric, try:
Code:
me.controlname = Dlookup("CurrentHours", "EquipmentReport", "[Equipment#]='" & Me.[subform].[form]![controlname] & "'")


Duane
Hook'D on Access
MS Access MVP
 
Thanks for the prompt responses! I finally got it to work.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top