I need a function that can split up cells based on a character length but will also look at the words so that it does not split up a word in half due to a character limitation. For example, lets say I split up the sentence below into two cells in a row based on 35 characters.
I am creating this sentence as a Test String Example for Demonstration purposes.
What happens is it splits the word Test in half since the 'e' in test is the 35th character. I want to be able to split the sentence at 35 characters, but I want it to recognize test as a word and move the entire word into the 2nd cell. Then cut off the sentence at the last full word which is the letter/word "a" within that 35 character limit.
I am creating this sentence as a Te st String Example for Demonstration purposes.
I want to be able to split the sentence at 35 characters, but I want it to recognize test as a word and move the entire word into the 2nd cell. Then cut off the sentence at the last full word which is the letter/word "a" within that 35 character limit.
I am creating this sentence as a Test String Example for Demonstration purposes.
Is there a function to do that?
Bookmarks