I think this was a leftover of a previous design, but should not interfere with functionality.
the default value does not work for consecutive cars unfortunately!
I tried something in code behind, but it doesn't update the field properly:
try
{
XPathNavigator myForm = MainDataSource.CreateNavigator();
XPathNavigator field0 = myForm.SelectSingleNode("/my:myFields/my:Invoices_List/my:group6/my:VehicleNo", NamespaceManager);
XPathNavigator field1 = myForm.SelectSingleNode("/my:myFields/my:Invoices_List/my:group6/my:Liters", NamespaceManager);
XPathNavigator field2 = myForm.SelectSingleNode("/my:myFields/my:group10/my:group11/my:car1/@my:car1_liters", NamespaceManager);
String P0 = field0.Value;
String P1 = field1.Value;
String P2 = field2.Value;
MessageBox.Show(P0 + " " + P1 + " " + P2, "Warning", MessageBoxButtons.YesNo);
field2.SetValue(P1);
}
catch (Exception ex)