Dim Filter As String
Dim a = e.Form.Controls("TextBox1").Text
Dim b = e.Form.Controls("TextBox2").Text
With e.Form.Controls("TextBox1")
If .value IsNot Nothing Then
If Filter >"" Then
Filter = Filter & " And "
End If
Filter = Filter & "[" & a & "] Like '%" & .text & "%'"
End If
End With
With e.Form.Controls("TextBox2")
If .value IsNot Nothing Then
If Filter >"" Then
Filter = Filter & " And "
End If
Filter = Filter & "[" & b & "] Like '%" & .text & "%'"
End If
End With
With e.Form.Controls("DateTimePicker1")
If .value IsNot Nothing Then
If Filter >"" Then
Filter = Filter & " And "
End If
Filter = Filter & "记录填写时间 >= #" & .text & "#"
End If
End With
With e.Form.Controls("DateTimePicker2")
If .value IsNot Nothing Then
If Filter >"" Then
Filter = Filter & " And "
End If
Filter = Filter & "记录填写时间 <= #" & .text & "#"
End If
End With
If Filter > "" Then
Tables("工时").Filter = Filter
End If
Dim t As Table = Tables("工时")
Dim g As Subtotalgroup
t.SubtotalGroups.Clear()
t.GroupAboveData = False
t.TreeVisible = False
g = New Subtotalgroup
g.Aggregate = AggregateEnum.Sum
'g.GroupOn = "姓名"
g.Caption = "{0}"
t.SubtotalGroups.Add(g)
t.Subtotal()
Dim r As Row
For i As Integer = 0 To t.Rows.Count(True) - 1
r = t.Rows(i,True)
If r.IsGroup '如果是分组行
Dim f As String = "[" & a & "] = '" & r("[" & a & "]") & "'"
Dim v As String = " [" & b & "]:" & t.Compute("Sum([" & b & "])",f)
r("[" & a & "]") = "[" & a & "]:" & r("[" & a & "]") & v
End If
Next
Dim b1 As New GroupTableBuilder("统计表1",DataTables("工时"))
b1.Groups.AddDef("[" & a & "]","" & a & "") '添加日期列用于分组,并用"月"代替原名称
b1.Totals.AddDef("[" & b & "]") '添加数量列用于统计
b1.Subtotal = True '生成汇总模式
b1.Filter = Filter
b1.Build '生成统计表
MainTable = Tables("统计表1") '打开生成的统计表