Sorry I wasn't specific:
I have a table name Account and in that table is a field called Acct #, Amt, Invoice #.
For Acct # - I have text 123
For Amt - I have $12
For Invoice # - I have DS123
I want to bring Acct# (123) and Invoice #(DS) together to make a new field call Specials.
I use <Specials: (Account!Acct# & "(" & Left(Account![Invoice #],2) & ")")> and use the make a table function with fields name Specials, Amt.
I then made an append query using the new table. But when I go to make an append query, the Specials field text did not append to the table I want. Instead of 123(DS) appending to the field Specials, 123 only appends.
Is there a way to make the 123(DS) append to the table about to be appended rather than just 123?
Thanks!