hi all, on a subform ihave two fields [position] and [approved], in [position] is a lookup, the lookup list is as follows
6G
5G
4G
3G
2G
1G
after i select one of the above i would like [approved] to load some text depending opon what was selected in[position], example [position] = 6g then [approved] would display "all".
i have tried the following and placed it in the onupdate property
if me.position = "6G" then approved = "ALL"
end if
but how do i ask it to look at[position] and if its "5G" then place something else in [approved], then if its "4G" put something else in "approved" etc, also is it better to put this code in after update , on dirty,lost focus, or what?![]()