I've got a string set in VBA that I am pulling from another program. When I pull this data into Excel, it has the format:
EXAMPLE EXAMPLE EXAMPLE EXAMPLE
EXAMPLE EXAMPLE EXAMPLE EXAMPLE
001: EXAMPLE EXAMPLE EXAMPLE - EXAMPLE
002: EXAMPLE EXAMPLE EXAMPLE - EXAMPLE
003: EXAMPLE EXAMPLE EXAMPLE - EXAMPLE
With my current VBA code, you click a form control and it places that data into a cell just as I typed it. I want to separate it so when I click the control it places the data into separate cells separated by the numbers. That is,
EXAMPLE EXAMPLE EXAMPLE EXAMPLE
EXAMPLE EXAMPLE EXAMPLE EXAMPLE
001: EXAMPLE EXAMPLE EXAMPLE - EXAMPLE
into the first cell,
002: EXAMPLE EXAMPLE EXAMPLE - EXAMPLE
into the adjacent cell, and
003: EXAMPLE EXAMPLE EXAMPLE - EXAMPLE
into the next adjacent cell, and so on for however many numbers I have. I hope I have explained my situating thoroughly enough for someone to help. Please excuse the fact that I am very new to VBA.