M
Miranda
hi all,
I want to do this insert statement, but i get a mysterious error message
that sheds no light on what the problem is. I'm assuming it's the nested
select part.....The value of costPerHour should already be in the Equipment
Assigned Table...in theory it won;t ever be null.
INSERT INTO [Equipment Assigned] (equipType, jobDesc, costPerHour)
VALUES (FORMS!AddProjectDetails!assignedEquip,
FORMS!AddProjectDetails!project,
(SELECT costPerHour
FROM [Equipment Assigned]
WHERE jobDesc = FORMS!AddProjectDetails!project));
I want to do this insert statement, but i get a mysterious error message
that sheds no light on what the problem is. I'm assuming it's the nested
select part.....The value of costPerHour should already be in the Equipment
Assigned Table...in theory it won;t ever be null.
INSERT INTO [Equipment Assigned] (equipType, jobDesc, costPerHour)
VALUES (FORMS!AddProjectDetails!assignedEquip,
FORMS!AddProjectDetails!project,
(SELECT costPerHour
FROM [Equipment Assigned]
WHERE jobDesc = FORMS!AddProjectDetails!project));