No matter how I delimit the LABELS field in the CSV, I get one big label. Things I have tried:
label1,label2
"label1","label2"
["label1","label2"]
It appears the import function wants me to separate the labels with each in their own column. Is there really no way to do this in one column?
Hello Mike,
Using CSV, you will need to add a single column to each label that you want to import.
To do it in a different way you will need to use a different import method, as JSON.
This may be a old post but this was helpful issue my team had today
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have just succeed using just " " (space bar) for example:
label1 label2
and this works! :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just confirming that space delimiters are still the correct format (December 2024).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.