Updated on: Oct 7, 2025
If data is from ShareList csv export, please remove the column titles line (first line) and select "csv data with quotes" option.
A row with fixed position for the fields, separated by semi-colon i.e.
text(1st position);price(2nd position, decimals or integer);qty(3rd position, decimals or integer);note(4th position)
csv import example for all 4 sections:
Text1;12.34;25;note1
Text2;28.7;90;note2
csv import example for text only:
Text1
Text2
csv import example for text and note:
Text1;;;note1
Text2;;;note2
csv import with quotes example for 4 sections:
"Text1";"12.34";"25";"note1"
"Text2";"28.7";"90";"note2"
csv import with quotes example for text with note:
"Text1";"";"";"note1"
"Text2";"";"";"note2"