Hi, I currently have an IP2010 Library Form that populates a repeating table from a secondary connection (table that is left of the solid black line). Within that secondary connection, I've created a button on each row of the repeating table the the user can click and it will populate a new row within a repeating table on my Main Data Connection (to the right of the solid black line). I have not problem getting the text fields to copy over, but I am running into some trouble when trying to copy the date field from the secondary connection into the date field on the main connection.

Here is the code as it stands now:
XPathNavigator nav = MainDataSource.CreateNavigator().SelectSingleNode("/my:myFields/my:dataFields/my:repeatingGroup[last()]", NamespaceManager);
XPathNavigator row = nav.Clone();
row.InsertAfter(nav);
AddValue(e.Source, row, "d:Title", "my:EventName");
AddValue(e.Source, row, "d:Event_x0020_Type", "my:EventType");
AddValue(e.Source, row, "d:Event_x0020_Location", "my:EventLocation");
AddValue(e.Source, row, "d:Planned_x0020_Start", "my:CurrentPlannedStartDate"); <----(This is the line I'm running into trouble with)
}
private void AddValue(XPathNavigator source, XPathNavigator target, string sourcePath, string targetPath)
{
target.SelectSingleNode(targetPath, NamespaceManager).SetValue(source.SelectSingleNode(sourcePath, NamespaceManager).Value);
}
I'm still new to coding and working my way through as I go, so any help would be appreciated.