how to just increase a field

  • Thread starter Thread starter h3llz
  • Start date Start date
h3llz said:
how to i increase a field rather than setting it? e.g. total=
total+price

What do you mean?
If total = 10 and price = 20, then Me!total = Me!total + Me!price will
result in total being set to 30.

If total = "wo" and price = "man", then Me!total = Me!total + Me!price will
result in total being set to "woman"
 
Back
Top