1、如果是sqlserver数据库,可以利用 row_number 给你表格编号,然后删除编号大于15的即可;
2、如果不是,只能遍历一次数据处理,如
Dim idx As String = "-1,"
Dim idx_temp As String = ""
Dim pdr As DataRow = Nothing
Dim count As Integer = 0
Dim cs As String = "第一列"
For Each dr As DataRow In DataTables("表A").Select("", "第一列")
Dim flag As Boolean = False
If pdr IsNot Nothing Then
For Each c As String In cs.split(",")
If pdr(c) <> dr(c) Then
flag = True
Exit For
End If
Next
End If
If flag OrElse pdr Is Nothing Then
If count > 5 Then
idx &= idx_temp
End If
count = 1
idx_temp = ""
Else
count += 1
If count > 5 Then
idx_temp &= dr("_Identify") & ","
End If
End If
pdr = dr
Next
If count > 5 Then
idx &= idx_temp
End If
Tables("表A").filter = "_Identify in (" & idx.trim(",") & ")"
'Tables("表A").filter = "_Identify not in (" & idx.trim(",") & ")" '显示唯一值