I wondering if it is possible to merge to 2 fields into a new new field (but I don't mean to concatenate them)
This is to track stock that has Transferred from one Unit to another:
Unit Names: CC1, CC3, CC4, CC7
This is the kind of thing I'd like to do:
Fields: [FromUnit][ToUnit]
[FromUnit] [ToUnit]
CC1 CC3
CC3 CC4
CC4 CC7
Convert to:
[Transfers]
CC1
CC3
CC4
CC7
I've been trying to do it using a table and a copy of the same table, then trying to join the [FromUnit] in the Original Table with the [ToUnit] in the Copy Table. but I can't get it to work.
Any suggestions?