|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
Sub test()
Set d = CreateObject("scripting.dictionary")
Set dc = CreateObject("scripting.dictionary")
ar1 = Range("c4:c7")
ar2 = Range("c8:c9")
For i = 1 To UBound(ar1)
d(Trim(ar1(i, 1))) = ""
Next i
For i = 1 To UBound(ar2)
dc(Trim(ar2(i, 1))) = ""
Next i
ar = Range("f2:g12")
For i = 2 To UBound(ar)
n_1 = 0: n_2 = 0
If InStr(ar(i, 2), "、") > 0 Then
rr = Split(ar(i, 2), "、")
For s = 0 To UBound(rr)
If d.exists(Trim(rr(s))) Then
n_1 = n_1 + 1
End If
If dc.exists(Trim(rr(s))) Then
n_2 = n_2 + 1
End If
Next s
ElseIf InStr(ar(i, 2), "、") = 0 Then
If d.exists(Trim(ar(i, 2))) Then
n_1 = n_1 + 1
End If
If dc.exists(Trim(ar(i, 2))) Then
n_2 = n_2 + 1
End If
End If
If n_1 > 0 Then sg = sg + 1
If n_2 > 0 Then yl = yl + 1
If n_1 > 0 And n_2 = 0 Then zysg = zysg + 1
If n_1 = 0 And n_2 > 0 Then zyyl = zyyl + 1
If n_1 > 0 And n_2 > 0 Then sy = sy + 1
Next i
[f16] = sg
[f17] = yl
[f18] = zysg
[f19] = zyyl
[f20] = sy
End Sub
|
|