I have some “warning data” that I need to summarize. Unfortunately, some of the entries are combined. I am pasting an example below:
Date Warning Data Frequency
200503 organize was found in charge_desc; intern was found in charge_desc 2
_____________________________________________________________________________________
When a semi colon is encountered, I’d like to move what’s to the right of it down to another row and copythe Date and Frequency. For instance, this data above would now appear in 2 different rows as below:
______________________________________________________________
200503 organize was found in charge_desc; 2
200503 intern was found in charge_desc 2
Is there an automated way of doing this?