I have a calculated field in table A.
Now I want to insert this field as value into table B.
How can I do that?
PS: Access will prevent you from inserting a calculated field with SQL Insert into.
Any method to bypass the limitation?
Calculated Field in Table A: IIf([Type]="aa",[Amt_A],[Amt_B])
Yes, I could insert three fields (Type, Amt_A, Amt_B) again in Table B, then insert another calculated field to get what I want, but I was wondering if there is any easier way for me to insert the value directly.
Really appreciate!