As a non-programmer, here are my beginning, non-VBA, thoughts on how to copy/paste the first sentence of every paragraph:
Dim Terminalpoint as String
- Terminalpoint = “.” Or “?” or “!”
- Run through text until you find a terminal point
- Select everything before that terminalpoint.
- Copy selection
- Insert copied text into a new worksheet
- Run through text until you find a paragraph break or tabbed line
- Repeat steps 2-6 until end of text
Can I do this using VBA? How can I get started?