Hoping someone can help me out, having a lot of trouble figuring out how to do this.
I have a large amount of text in a single cell
Example: (Cell A1)
I need to break up the text into smaller chucks. Each chuck can only be 40 characters long and has to end on a whole word.
Output example:
This is just an example. I actually have cells that have 40,000 character count in a single cell and I need to break it up into 10,000 character count chucks.
Please let me know if this is possible. Thank you so much!
I have a large amount of text in a single cell
Example: (Cell A1)
All investing is subject to risk, including the possible loss of the money you invest. All investing is subject to risk, including the possible loss of the money you invest. |
I need to break up the text into smaller chucks. Each chuck can only be 40 characters long and has to end on a whole word.
Output example:
Output | Character Count (len) |
All investing is subject to risk, (Cell A2) | 33 |
including the possible loss of the money (Cell A3) | 40 |
you invest. (Cell A4) | 11 |
This is just an example. I actually have cells that have 40,000 character count in a single cell and I need to break it up into 10,000 character count chucks.
Please let me know if this is possible. Thank you so much!