Problem with basic looping and criteria

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to loop through a range and count the number of time a cell
contains the letters"CPCT". I am using the right function since they always
occur at the end of the string. My cod keeps getting snagged here: If
xlApp.WorksheetFunction.Right(r1.Value, 4) = "CPCT" Then

Any Ideas? My full code is below
Dim r1 As Range
Dim Count As Integer
Count = 0
For Each r1 In xlApp.Sheets("Resource Info").Range("A4:A500")
If xlApp.WorksheetFunction.Right(r1.Value, 4) = "CPCT" Then
Count = Count + 1
End If
Next
 
Sub What()
Count = 0
Range("A4").Select
Do Until ActiveCell.Address = "$A$500"
If Right(ActiveCell.Value, 4) = "CPCT" Then
Count = Count + 1
End If
ActiveCell.Offset(1, 0).Select
Loop
End Sub
 
Try this...

Dim r1 As Range
Dim Count As Integer
Count = 0
For Each r1 In Range("A4:A500")
If Right(r1.Value, 4) = "CPCT" Then
Count = Count + 1
End If
Next
MsgBox "total = " & Count
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top