Hello,
I have a table called 'survey' which has three columns (amongst others) called q9, q9unitoftime, and q9numsperyear. Q9numsperyear is a derived column from the other two. I wrote an update query to make this work.
UPDATE survey SET q9numsperyear=
(Iif(q9unitoftime=1, q9*52, Iif(q9unitoftime=2, q9*12, Iif(q9unitoftime=3, q9))));
This is good for a one time update, but I want access to perform that calculation on its own once q9 and q9unitoftime have been entered through a form.
Can I do something like this on an event or something?