I have the following database in access:
mov_atm
n_mov conta data valor mov_sc
100 200 1/8/2014 500 n_mov conta data valor
101 900 5/8/2014 800 200 900 5/8/2014 800
102 100 1/8/2014 500 109 100 1/8/2014 500
103 100 1/8/2014 500
With the result I want to get the following:
n_mov conta data valor mov_sc
n_mov conta data valor
101 900 1/8/2014 800 102 900 5/8/2014 800
102 100 5/8/2014 900 101 100 1/8/2014 500
Note that the number of records that exist in the mov_atm
table is not the same as in the mov_sc
table?
What I want is that n_mov
of tabela mov_sc
must inherit n_mov
from table mov_atm
and that no repeated data appear I want it to be as shown in the result.
How can I do to get this result using Access.vba
?