I have some pipes settup in import/export that uses the csv to xml activity. I have a xslt file that formates the xml.
my problem is that if I have these two rows in my csv file:
abc;1
123;2
"abc" is not imported to the xml file only "123"
if I have these two lines :
abc;1
def;2
both "abc" and "def" is imported.
Could it be something wrong whit my xslt file?
it looks like as soon as there is a number in one field, that field has to be a number in all rows.