Hi Salvatore,
I have since solved the issue. the problem was with hyphen vs dash/minus in XML
<Row>
<LotNumber>123456</LotNumber>
<Element>Pt, Pd</Element>
<Comment>Concession - AMANUI 2014 - 001</Comment>
</Row>
The hyphen between the numbers in the <Comment> was read/rendered as a dash or minus and breaking my transformation. had to use string function to replace such.
Find
Concession - AMANUI 2014 – 002
Replace
Concession - AMANUI 2014 - 002
Thanks,
Bheki