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.
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.