G
Guest
I am trying to run an update query and MS Access fails to
update any of the records because of type conversion
failure. I am not sure what this means, since the field I
am updating and the fields whose data I am updating from
are all set to currency data type. I have a feeling it
might also have something to do with the data type of my
query parameter not being explicitly defined, but I have
no idea how to define it.
Here is my update query:
UPDATE POHeader INNER JOIN PODetails ON [POHeader].
[Control Job #]=[PODetails].[Control Job#] SET POHeader.
[Total charge] = DSum("[p1chrg]+[p2chrg]+[p3chrg]+
[p4chrg]","PODetails","[Control Job#]=" & [Control Job
#]);
Would appreciate any help!
update any of the records because of type conversion
failure. I am not sure what this means, since the field I
am updating and the fields whose data I am updating from
are all set to currency data type. I have a feeling it
might also have something to do with the data type of my
query parameter not being explicitly defined, but I have
no idea how to define it.
Here is my update query:
UPDATE POHeader INNER JOIN PODetails ON [POHeader].
[Control Job #]=[PODetails].[Control Job#] SET POHeader.
[Total charge] = DSum("[p1chrg]+[p2chrg]+[p3chrg]+
[p4chrg]","PODetails","[Control Job#]=" & [Control Job
#]);
Would appreciate any help!