Page 1 of 1

importing multiple tags using a csv file

Posted: Wed Aug 31, 2016 2:48 am
by mscheibe
How do I import multiple tags per document using a csv file? Is there a special character needed to separate tags?

thank you

Re: importing multiple tags using a csv file

Posted: Thu Sep 01, 2016 9:46 am
by Petko
In order to import tags, they need to be separated by comma. But since comma is the delimiter for CSV files, the field needs to be enclosed by a text qualified (quotes for example). So you need something link this:

Code: Select all

document title 1, "tag 1, tag 2"
document title 2, "tag 1, tag 3"

Re: importing multiple tags using a csv file

Posted: Sun Sep 04, 2016 10:30 am
by mscheibe
yes that did it!

thank you