vba 调用 countif 函数问题
Posted onelikeone
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vba 调用 countif 函数问题相关的知识,希望对你有一定的参考价值。
源数据是A1:G18,需求是在K列显示A1:A18中各单元格重复出现的次数。在L列中是用countif函数直接计算的,
Private Sub test() Dim rng As Range, i As Integer i = 1 For Each rng In Range("A1:A18") Range("I" & i) = Application.WorksheetFunction.CountIf(Range("A" & i & ":G18"), Range("A" & i)) i = i + 1 Next rng End Sub
以上是关于vba 调用 countif 函数问题的主要内容,如果未能解决你的问题,请参考以下文章
自动填充 Application.Countifs.Formula VBA Excel