Hi I have this code
But what I want is a change in the last line![]()
Dim Count As Integer For Each c1 In Worksheets("Sheet2").Range("A11:A24").Cells Count = 0 For Each c2 In Worksheets("Sheet1").Range("C1:C200").Cells If (c1.Value = c2.Value) Then Count = Count + 1 End If Next c1.Value = Count Next
to something like![]()
c1.Value = Count
Essentially, I want to use the cell in the next row over from c1. How can I do this?![]()
c1+NextRowOver.Value = Count
Thank you.
Bookmarks