-- 回复:(有点色) 你引用它表数据的方法是什么?...
If e.DataCol.Name = "姓名" Then
Dim Filter As String = "[姓名] = \'" & e.NewValue & "\'"
Dim m As Integer = e.DataRow("日期").Month
Dim y As Integer = e.DataRow("日期").Year
Dim dt1 As New Date(y, m, 1)
Dim dt2 As New Date(y, m + 1, 1)\'获取下个月的第一天
Filter = filter & " and 日期 >= #" & dt1 & "# And 日期 <= #" & dt2 & "#"
e.DataRow("借支") = DataTables("借支表").sqlCompute("Sum(金额)",Filter)
End If
---------------引用代码
其他的没有了。本来是用compute也会,后来用了sqlcompute,还是会这样