Skip to main content
Nintex Community Menu Bar

I am trying out ways to extract List items from SharePoint list and convert them to CSV file using Nintex Workflow.



Trying similar solution as posted in Click here , i have managed to pull out data from SharePoint ,But i am facing some issue with the XML2CSV conversion node in nitex. I have this piece of code ,



<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="iso-8859-1"/>



<xsl:template match="/child::*">
<xsl:for-each select="child::*">
{WorkflowVariable:textXSLChunk}
<xsl:text>&#xa;</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
But when ever their is an "," in the remark field , it is considering it as next field. How can i make it skip the "," entry in the field value.

Can you provide an example of the xml in question? It doesn't have to be real data, but it would be helpful to have the node names, etc. so that I could work up some working code. 

(Please be sure to include some data that doesn't work with your current xslt! like something with existing commas in it) 


Reply