I am getting the error "Failed to select the destination node" on my form.
Here is the command I am using:
Transform /sourceds=RepeatingTableData /destpath=/my:myFields/my:repeatingTable /xsltfile=LastWeeksData.xslt /excluderoot=true /placement=append
Here is the error I'm getting:
Transform /sourceds=RepeatingTableData /destpath=/my:myFields/my:repeatingTable /xsltfile=LastWeeksData.xslt /excluderoot=true /placement=appendfalseFailed to select the destination node.Transform /sourceds=RepeatingTableData /destpath=/my:myFields/my:repeatingTable /xsltfile=LastWeeksData.xslt /excluderoot=true /placement=appendfalseFailed to select the destination node.
I looked at the LastWeeksData.xslt file and the xsl looks correct to me. I confirmed the names of the fields in both the form and the secondary list.
Here is the XSLT:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:dfs="http://schemas.microsoft.com/office/infopath/2003/dataFormSolution"
xmlns:d="http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields"
xmlns:my="http://schemas.microsoft.com/office/infopath/2003/myXSD/2016-03-14T16:40:08"
>
<xsl:template match="/">
<my:repeatingTable>
<xsl:apply-templates select="/dfs:myFields/dfs:dataFields/d:SharePointListItem_RW[d:FormID !='']"/>
</my:repeatingTable>
</xsl:template>
<xsl:template match="d:SharePointListItem_RW">
<my:rtColumns>
<my:matterNumber>
<xsl:value-of select="d:ClientMatterNumber"/>
</my:matterNumber>
<my:clientName>
<xsl:value-of select="d:ClientMatterName"/>
</my:clientName>
<my:description>
<xsl:value-of select="d:Description"/>
</my:description>
<my:partner>
<xsl:value-of select="d:Partner"/>
</my:partner>
<my:comments>
<xsl:value-of select="d:Comments"/>
</my:comments>
<my:ST>
<xsl:value-of select="d:ST"/>
</my:ST>
<my:LT>
<xsl:value-of select="d:LT"/>
</my:LT>
<my:thisMonth>
<xsl:value-of select="d:ThisMonth"/>
</my:thisMonth>
<my:RowID>
<xsl:value-of select="d:ID"/>
</my:RowID>
<my:FormName>
<xsl:value-of select="d:FormName"/>
</my:FormName>
</my:rtColumns>
</xsl:template>
</xsl:stylesheet>
Here is the repeating table node

Here is the source list:
