how to.........

  • Thread starter Thread starter LIN
  • Start date Start date
L

LIN

Guest
my problem is to move a field's(say field_1) leftest 2 characters into a new field(say field_2) within same record. but how ?
note : field_1 have more than 2 characters,& is a field of string, so does field_2.
thanks for all who can tell me.
 
I wouldn't recommend duplicating any data within the same record let alone the same table. You should just reference the first two letters in Field_1 whenever you need them instead of moving them. You can reference them using the following:

Left ([Field_1),2)
 

Users who are viewing this thread

Back
Top Bottom