I am trying to use VBA to write an MS Access table to a text file. Unfortunately specific columns of the table must be picked and the textfile should have a specific format.
The Access table has numerous fields and I want to choose just the columns Field1, Field2 and Field3.
The created textfile should then have the following format:
A.1 17
A.2 15
A.3 14
B.1 10
B.2 10
B.3 46
C.1 15
C.2 10
C.3 15
So Field1 and 2 should be separated by a dot and Field2 and 3 by a space. So far I only managed to read the Access table using ADODB.Recordset but didn't get any further.