If e.DataCol.Name = "队别" Then
If e.NewValue Is Nothing Then
e.DataRow("过磅数吨数") = Nothing
e.DataRow("蔗场存蔗吨数") = Nothing
e.DataRow("地上存蔗吨数") = Nothing
e.DataRow("砍车数") = Nothing
e.DataRow("运车数") = Nothing
Else
Dim dr As DataRow
Dim tr As DataRow
dr = DataTables("当天砍运完成").Find("[单位] = \'" & e.NewValue & "\'","_Identify Desc")
tr = DataTables("计划").Find("[单位] = \'" & e.NewValue & "\'","_Identify Desc")
If dr IsNot Nothing
e.DataRow("过磅数吨数") = dr("过磅数")
e.DataRow("蔗场存蔗吨数") = dr("蔗场存蔗")
e.DataRow("地上存蔗吨数") = dr("地上存蔗")
e.DataRow("砍车数") = tr("砍计划")
e.DataRow("运车数") = tr("运计划")
End If
End If
End If