Hello,

I'm completely new to VBA for excel and would greatly appreciate some guidance. The problem, is that I have a single column containing a list of IDs like this:

002234
000023
022212
023232
021232

My goal, is to format these IDs such that they are concatenated into a single string, with each ID separated by a semicolon. More importantly, I need to output the results to a text file. So the resulting text file would look like this:

002234;000023;022212;023232;021232

Would anyone be able to assist me?