Page 1 of 1
How to convert table to tab-delimited text
Posted: 2016-04-30 13:19:16
by rwg
I know one can convert tab-delimited text into a table, but is it possible to convert a table into tab-delimited text? It seems to be possible in MS Word, but can it be done with Nisus?
Re: How to convert table to tab-delimited text
Posted: 2016-05-01 07:06:59
by phspaelti
Use the command "Copy Table Text" from the "Table" menu.
There are however obvious limitations to the operation, since table cells can contain multiple paragraphs. And even when each cell has only a single paragraph a table row can have multiple paragraph styles, while a single tab delimited paragraph can only have one.
Re: How to convert table to tab-delimited text
Posted: 2016-05-01 11:37:50
by rwg
This is helpful to know. However, it means then pasting the copied text somewhere. I was looking rather for a way to convert the table itself into tab-delimited text, and I have since discovered that it is easy to do with LibreOffice.
Re: How to convert table to tab-delimited text
Posted: 2016-05-03 19:05:48
by Þorvarður
rwg wrote:it means then pasting the copied text somewhere. I was looking rather for a way to convert the table itself into tab-delimited text, and I have since discovered that it is easy to do with LibreOffice.
Click somewhere before the table and run the macro. This is exactly what LibreOffice does.
Code: Select all
# Convert a table into tab-delimited text
Select Next Table
Copy Table Text
Delete
Paste
Re: How to convert table to tab-delimited text
Posted: 2016-05-03 20:42:42
by rwg
Thank you. Simple when you know how.
Re: How to convert table to tab-delimited text
Posted: 2016-05-06 14:37:29
by greenmorpher
Excellent, borvarour, thanks.
Cheers, Geoff