I need help on this.
I have a table of which REMITAMTINCLADJ is updated from REMITAMTINCGST, ADJ1, ADJ2, and ADJ3. All fields reside in the same table and are of currency type.
I am using Update Query to update the RemitAmtInclAdj
The formula in the Update Query is:
[RemitAmtincGST]+[Adj1]+[Adj2]+[Adj3]
The RemitAmtIncGST always have an amount in it but Adj1, Adj2, Adj3 could be empty fields.
When I run the query it will not update the RemitAmtInclAdj.
However, if I put any values in Adj1, Adj2,Adj3, the RemitAmtInclAdj is updated when I run the query.
Shown below is the actual query
===============================
UPDATE Connects_Master SET Connects_Master.Remitted = Yes, Connects_Master.RemitAmtInclAdj = [RemitAmtincGST]+[Adj1]+[Adj2]+[Adj3]
WHERE (((Connects_Master.UNITCOST)>0) AND ((Connects_Master.BatchNmbr) Is Not Null));
Thank you in advance.
I have a table of which REMITAMTINCLADJ is updated from REMITAMTINCGST, ADJ1, ADJ2, and ADJ3. All fields reside in the same table and are of currency type.
I am using Update Query to update the RemitAmtInclAdj
The formula in the Update Query is:
[RemitAmtincGST]+[Adj1]+[Adj2]+[Adj3]
The RemitAmtIncGST always have an amount in it but Adj1, Adj2, Adj3 could be empty fields.
When I run the query it will not update the RemitAmtInclAdj.
However, if I put any values in Adj1, Adj2,Adj3, the RemitAmtInclAdj is updated when I run the query.
Shown below is the actual query
===============================
UPDATE Connects_Master SET Connects_Master.Remitted = Yes, Connects_Master.RemitAmtInclAdj = [RemitAmtincGST]+[Adj1]+[Adj2]+[Adj3]
WHERE (((Connects_Master.UNITCOST)>0) AND ((Connects_Master.BatchNmbr) Is Not Null));
Thank you in advance.