Hi,
I have this query using the Query Wizard to append records to a table called Orders_Status, the records are from other tables such as TblUnits, TblOrderUnits, TblVendor.
What I want is in a particular field in Orders_Status, a prefix to be added before the value of the record.
Example:
thats my current table. What I want is like this:
I want to add word "Ord" in front of the order number. How can I do that in Append Query Design?
Thanks!
I have this query using the Query Wizard to append records to a table called Orders_Status, the records are from other tables such as TblUnits, TblOrderUnits, TblVendor.
What I want is in a particular field in Orders_Status, a prefix to be added before the value of the record.
Example:
Code:
--------------------------------------------------------------------
Order | Date | Vendor | ETD | UDD |
--------------------------------------------------------------------
123123 | 11/15/2012 | A | 11/16/2012| 11/22/2012 |
123141 | 11/15/2012 | B | 11/16/2012| 1/11/2013 |
--------------------------------------------------------------------
Code:
--------------------------------------------------------------------
Order | Date | Vendor | ETD | UDD |
--------------------------------------------------------------------
[COLOR=#EF2929]Ord[/color]123123 | 11/15/2012 | A | 11/16/2012| 11/22/2012 |
[COLOR=#EF2929]Ord[/color]123141 | 11/15/2012 | B | 11/16/2012| 1/11/2013 |
--------------------------------------------------------------------
I want to add word "Ord" in front of the order number. How can I do that in Append Query Design?
Thanks!