Count Multiple Items in Same Column

helpexcel

Well-known Member
Joined
Oct 21, 2009
Messages
656
Hi - How do I add another variable to this code? I want it to count how many times "Apple" or "Pear" appear in the column?


Code:
With Sheet1    Dim x As Long
   x = .Range("A" & Rows.Count).End(xlUp).Row


  Dim cnt As Integer
  cnt = 0
  For i = 1 To x
    If .Cells(i, 1).Value = "Apple" Then
      cnt = cnt + 1
    End If
  Next i




.Range("C1").Value = cnt


End With
 
If you are talking about moving cells to other pages, that is a whole different question, and should be posted in a new thread.
 
Upvote 0

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
I want the count total (cnt) to be put in a different workbook. The ws.name are the same in both workbooks.
 
Upvote 0

Forum statistics

Threads
1,225,750
Messages
6,186,805
Members
453,373
Latest member
Ereha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top