robmason10
Technical User
Have asked something similar earlier but am lost again so will start again..
I have 2 tables - tbl Merged was used to create tbltrans but I now need to update some ID fields in tblTrans (as these were auto creates they didn't exist before so couldnt do it...) anyway..
tblMerged
F1 LinkedID
TblTrans
TransID linkedID
What I basically need to do is update TblTrans.LinkedID with the value of TblTrans.TransID for the transaction where LinkedID = the value of F1
Does that make any sense at all? - i.e....
TblMerged
F1 LinkedID
1 Null
2 3
3 5
4 Null
5 Null
TblTrans
TransID LinkedID
a Null
b 3
c 5
d Null
e Null
TblTrans - Desired
TransID LinkedID
a Null
b c
c e
d Null
e Null
Thanks in advance
I have 2 tables - tbl Merged was used to create tbltrans but I now need to update some ID fields in tblTrans (as these were auto creates they didn't exist before so couldnt do it...) anyway..
tblMerged
F1 LinkedID
TblTrans
TransID linkedID
What I basically need to do is update TblTrans.LinkedID with the value of TblTrans.TransID for the transaction where LinkedID = the value of F1
Does that make any sense at all? - i.e....
TblMerged
F1 LinkedID
1 Null
2 3
3 5
4 Null
5 Null
TblTrans
TransID LinkedID
a Null
b 3
c 5
d Null
e Null
TblTrans - Desired
TransID LinkedID
a Null
b c
c e
d Null
e Null
Thanks in advance