I would like a macro that will split the cell value by character “_” of range F5:F12 and write it to a text file.
The text file should output as shown below.
Can anyone help me write a macro? Please: D
sample.ods (9.7 KB)
I would like a macro that will split the cell value by character “_” of range F5:F12 and write it to a text file.
The text file should output as shown below.
Can anyone help me write a macro? Please: D
sample.ods (9.7 KB)
odf
(OpenDocumentFormat) files, not images!OO.o
insofar) ApplicationProgrammingInterface
in Basic. Begin at the beginning.You can use the same macro with which you created Rozkrój from the range V21:V221. Just replace the underscores with CHAR(10) (or CHAR(10)&CHAR(13)) in your formula. It will look like
=TEXTJOIN(CHAR(10)&CHAR(13);0;B10:E10)&CHAR(10)&CHAR(13)
Thank you for your help JohnSun.