I have a very simple query, that creates a list of all social security numbers that meet certain criteria. I copy the field (SSN) and paste in a text document. I then have to delete the first line in the text file (where the field name is) so that the text file immediately begins with the first SSN. Example:
What I get
————-
SSN
999999999
888888888
What I want
—————
999999999
888888888
and so on, and so on….how to do with vba? The file is located under C:/Database/SSN.txt
This file is important to keep updated, because it serves as a picklist for an oracle-driven database (unfortunately, there is no way of directly linking the Access front end with it), so manual updates must be ran, saved as excel files, and then update queries be run.
Off of my tangent now….I think my problem is fairly straightforward, TIA