For Each s As String In DataTables("表A").GetValues("第一列")
Dim ndr As DataRow = DataTables("表B").Find("第一列 = '" & s & "'","第三列 Desc")
If ndr Is Nothing Then
ndr = DataTables("表B").AddNew
ndr("第一列") = s
End If
Dim d As Date = DataTables("表A").Compute("max(第三列)", "第一列 = '" & s & "'")
ndr("第二列") = DataTables("表A").GetComboListString("第二列", "第一列 = '" & s & "' and 第三列=#" & d & "#").replace("|", ";")
Next