首页 > 办公 > Excel > 正文

Excel统计出现次数、个数的VBA代码

2019-10-25 20:22:40
字体:
来源:转载
供稿:网友

  使用如下的VBA代码,您就可以在Excel中,统计某个字符或某个数字,甚至是某个字符串,在某个数据区域范围内,所出现的次数,即出现几次,或称为有几个。

  代码如下,是VBA宏代码。

  Set myb = CreateObject("scripting.dictionary"): myb("数字") = "次数"

  Set rng = Application.InputBox("选择要统计的区域:", Type:=8)

  ActiveSheet.Cells.Interior.ColorIndex = 0

  rng.Interior.ColorIndex = 3

  For Each rng1 In rng

  myb(rng1.Value) = Application.WorksheetFunction.CountIf(rng, rng1)

  Next

  Set rng3 = Application.InputBox("选择结果输出地:", Type:=8)

  With rng3

  .Resize(myb.Count) = Application.Transpose(myb.keys)

  .Offset(, 1).Resize(myb.Count) = Application.Transpose(myb.items)

  End With

  Set myb = Nothing: Set rng3 = Nothing

  End Sub


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表