Hello guys. This is my first post so excuse any mistakes that i have or will make.
So i wish to combine multiple fields (there are no fixed number of fields, they vary depending on the data, so i guess union queries are out of the question) into one large field.
For example:
TABLE 1:
PNumber PName C1 C2 C3 1 AAA 0.1 0.2 0.3 2 BBB 0.4 0.5 0.6
So i wish to combine the fields C1, C2 and C3 into a larger fields containing all the data. So considering the example above, it should look like this:
TABLE 2:
PNumber PName C1+C2+C3 1 AAA 0.1 1 AAA 0.2 1 AAA 0.3 2 BBB 0.4 2 BBB 0.5 2 BBB 0.6
I plan on entering data into TABLE 1 using a form and running a query, or some code etc so that it looks like TABLE 2.
Thanks in advance