Dim Filter As String
With forms("资金分配操作窗口").Controls("ComboBox1")
If .Value IsNot Nothing Then
If Filter > "" Then
Filter = Filter & "And"
End If
Filter = Filter & "绑定号 = \'" & .Value & "\'" \'此处内容自行修改
End If
End With
If Filter > "" Then
Tables("回款勾选窗口_Table1").Filter = Filter
End If \'显示订单清单的列表
Tables("回款勾选窗口_Table1").Filter = Filter & " And 收款信息_付款否=false"
Tables("回款勾选窗口_Table1").ExtendLastCol = True \'功能是填表列与窗口后面的间歇
\'