I have a file in this format
column1 column2 column3 column4
Usually I have data like this
column1 column2 column3 column4
xxx yyy zzz aaaaaa bbbbbb cccccccc
i.e column 4 has a long string. But whenever the string gets too large, it breaks like this
column1 column2 column3 column4
xxx yyy zzz aaaaaa bbbbbb cccccccccccccccccccccc
ccccccccc
111 222 333 44444444
Could we format it like?
column1 column2 column3 column4
xxx yyy zzz aaaaaa bbbbbb cccccccccccccccccccccc
ccccccccc
111 222 333 444444
The data is not the same as shown above.
Regards
column1 column2 column3 column4
Usually I have data like this
column1 column2 column3 column4
xxx yyy zzz aaaaaa bbbbbb cccccccc
i.e column 4 has a long string. But whenever the string gets too large, it breaks like this
column1 column2 column3 column4
xxx yyy zzz aaaaaa bbbbbb cccccccccccccccccccccc
ccccccccc
111 222 333 44444444
Could we format it like?
column1 column2 column3 column4
xxx yyy zzz aaaaaa bbbbbb cccccccccccccccccccccc
ccccccccc
111 222 333 444444
The data is not the same as shown above.
Regards