I have a large array of building names in a single column. Is there a non VBA solution for getting the frequency of each building name in the column next to the array of names?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
=countif(range,cell) and drag it downfor instance:
=countif($A$1:$A$50,A1)will count how many times the text in A1 appears in A1 through A50the dollar signs keep the range constant as you drag it down column B
You could also use a pivot table