Hello -- I've been working on this since this morning (starting in a batch file, then resorting to AutoHotkey). I know it's simple, but...so am I.
I have a .csv file that is automaticallly generated throughout the day in the following format. It is a concatenation of a bunch of other files. When the file is created, I need to very quickly scrub it, and I think the fastest way to do this is using a macro, but I'm open to any suggestion that works.
What I would like to do is the following:
The initial data looks like this:
A
I would like it to end up looking like this:
I have a .csv file that is automaticallly generated throughout the day in the following format. It is a concatenation of a bunch of other files. When the file is created, I need to very quickly scrub it, and I think the fastest way to do this is using a macro, but I'm open to any suggestion that works.
What I would like to do is the following:
- Delete all instances of the header (Music,Description,%Length (1 Track),Category Style: Code) -- there will be multiple instances in the data.
- Delete all instances of the footer (Sorted by MusicMaker) -- will be multiple
- Delete all duplicates using the first value (Music) as the comparison. So even if the other values are different, delete all but one instance of "BACH".
- Collape the list so that empty rows are deleted.
The initial data looks like this:
A
Music,Description,%Length (1 Track),Category Style: Code |
BACH,"Classical Hits",70.679012,47.7678 |
LEDZEP,"Rock",14.666667,5912241.4000 |
RUSH,"Canandian Stuff",197.0538,224130.0920 |
Sorted by MusicMaker |
I would like it to end up looking like this:
BACH |
LEDZEP |
RUSH |