Excel statistics The number of occurrences of VBA code

Source: Internet
Author: User

Using the following VBA code, you can count a character or a number, or even a string, within a range of data regions, several times, or several, in Excel.

The code below is the VBA macro code.

Set Myb = CreateObject ("Scripting.Dictionary"): Myb ("number") = "Times"

Set rng = Application.inputbox ("Select the area to be counted:", 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 ("Select result output:", 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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.