hello,
I use a huge query to add records to a table (previously emptied) that I export as a CSV. This CSV is now too big. It has information on events. My boss wants me to create a csv for each event name.
So, if I have:
circus1 july 1
circus1 july 2
circus1 july 3
circus2 august 1
circus2 august 2
...
I now need to create circus1.csv and circus2.csv
How can I do it with Access ?
I have tried:
strSQL = "SELECT DISTINCT EVENT.EventName INTO " & [EventName] &" "& _
"FROM EVENT;"
but it doesn't work... :(
have any suggestions ?????
Thank you!!