vipersmind
it can't be!
- Local time
- Today, 21:32
- Joined
- Dec 26, 2002
- Messages
- 82
I am trying to append record from one tables to another... sounds easy but there is a catch.
The 1st table tblTexuralCode is structured:
the new table tblTexturalNew is structured:
As you can see the values in tblTexuralCode are the same as the field names in tblTexturalNew.
I wish to assign a number value to each code in tblTexuralCode (depending on its position in the table) and append it to the field with the same name ;where the From, To, HoleID are equal in both tables.
There is more than one hole in the tblTexuralCode
Hope this is clear, seems messy to explain???
The 1st table tblTexuralCode is structured:
Code:
[B]HOLE FROM TO Mj1 Mj2 Mj3 Mj4 Mj5[/B]
Test 0 1 AB
Test 1 2 AC AR
Test 2 3 AS AV AB
Test 3 4 AB AV
Test 4 5 AV AC
Code:
[B]HoldeID From To AB AC AR AS AV[/B]
Test 0 1
Test 1 2
Test 2 3
Test 3 4
Test 4 5
As you can see the values in tblTexuralCode are the same as the field names in tblTexturalNew.
I wish to assign a number value to each code in tblTexuralCode (depending on its position in the table) and append it to the field with the same name ;where the From, To, HoleID are equal in both tables.
There is more than one hole in the tblTexuralCode
Hope this is clear, seems messy to explain???