Problem using updated fields in update expressions

  • Thread starter Thread starter Nik
  • Start date Start date
N

Nik

Probably being very dense but...

If I update a database table field in an "update" action
query, how do I then use the updated value of this field
in another "update to" expression in the same query?

At the moment I'm only getting the "before update" value
of the first field being used in the update expression of
the second one.
 
Nik said:
Probably being very dense but...

If I update a database table field in an "update" action
query, how do I then use the updated value of this field
in another "update to" expression in the same query?

At the moment I'm only getting the "before update" value
of the first field being used in the update expression of
the second one.

You could try creating a variable and use the variable in both Update
queries....
 
Back
Top