I have an if statement to update two field values:
IIf([MaterialSign]="D",CCur([LaborCharge]/100),CCur([LaborCharge]/100)*-1)
IIf([MaterialSign]="D",CCur([MaterialCharge]/100),CCur([MaterialCharge]/100)*-1)
Also in the update query I have
NetCharge
Update to
[LaborChargeNet]+[MaterialChargeNet]
The if statments work fine, however the Net charge does not update. Is this because at the time of the query the value is not updated yet? Can I do this all in one query or will it take two queries?