E
esseryn
I am using Access 97.
Let us say I have a table like the following
F1 F2
1 "car" "wheel"
2 "motorcycle" "engine"
3 "truck" "door"
F1 and F2 are field names. One through three are row numbers
What I want to create is a concatenation matrix that has the following
results:
(1,F1)&(1,F2) = "car wheel"
(1,F1)&(2,F2) = "car engine"
(1,F1)&(3,F2) = "car door"
(2,F1)&(1,F2) = "motorcycle wheel"
(2,F1)&(2,F2) = "motorcycle engine"
(2,F1)&(3,F2) = "motorcycle door"
(3,F1)&(1,F2) = "truck wheel"
(3,F1)&(2,F2) = "truck engine"
(3,F1)&(3,F2) = "truck door"
If needed, I would like to be able to add more field names. The
resulting concatenations will be appended into another table.
How would I tackle this?
Let us say I have a table like the following
F1 F2
1 "car" "wheel"
2 "motorcycle" "engine"
3 "truck" "door"
F1 and F2 are field names. One through three are row numbers
What I want to create is a concatenation matrix that has the following
results:
(1,F1)&(1,F2) = "car wheel"
(1,F1)&(2,F2) = "car engine"
(1,F1)&(3,F2) = "car door"
(2,F1)&(1,F2) = "motorcycle wheel"
(2,F1)&(2,F2) = "motorcycle engine"
(2,F1)&(3,F2) = "motorcycle door"
(3,F1)&(1,F2) = "truck wheel"
(3,F1)&(2,F2) = "truck engine"
(3,F1)&(3,F2) = "truck door"
If needed, I would like to be able to add more field names. The
resulting concatenations will be appended into another table.
How would I tackle this?