|
You can create a new field and force a line break every 100 characters in Field 1.
Assuming that the number of characters in the cell you need to process is less than 300, you need to wrap at every 100 characters. The formula can be written as follows:
B2==MID(A2,1,100)&CHAR(10)&MID(A2,101,100)&CHAR(10)&MID(A2,201,100)
The MID() function sequentially takes out every 100 characters (you can continue to add according to your own needs)
char(10) is a newline symbol
Of course, the cell should be set to "Wrap" first.
After the test, the result can be recognized as a new line by WORD, and TXT is invalid. |
|