Find a value from a range on a sheet that 'contains' a string

_DBB_

New Member
Joined
Mar 23, 2015
Messages
14
I'm trying to create VBA that searches a worksheet for a cell in a row that contains a string - it then needs to check the expiry date is within 6 months from today(0 and copy all rows that meet the criteria to another sheet.

Search Worksheet = DELEGATES
String Value = RENEWALS sheet Cell B3
Post Sheet = Sheet2

Sub Renewals()
Dim aLastRow As Long
Dim yResults As Long
Dim xCourse As String
Dim foundRng As Range
aLastRow = Worksheets("DELEGATES").UsedRange.Rows.Count
yResults = Worksheets("Sheet2").UsedRange.Rows.Count

If yResults = 1 Then
If Application.WorksheetFunction.CountA(Worksheets("Sheet2").UsedRange) = 0 Then yResults = 0
End If

xCourse = Worksheets("RENEWALS").Range("B3").Value
Set foundRng = Worksheets("DELEGATES").Range("R1:R" & aLastRow)

On Error Resume Next
Application.ScreenUpdating = False
For K = 1 To foundRng.Count

If CStr(foundRng(K).Value) Like "*" & xCourse & "*" Then
foundRng(K).EntireRow.Copy Destination:=Worksheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1)
End If
Next
Application.ScreenUpdating = True
MsgBox "Finished"

End Sub
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
I simplified your code - hopefully it achieves required result

You did not tell us where expiry date is to be found
I assumed it is in column L (2 columns to right of R)
VBA Code:
Cel.Offset(, 2)
Amend to match your data
VBA Code:
'If found in column L (6 columns to left of R) then it would be
Cel.Offset(, -6)
'etc

VBA Code:
Sub Renewals()

Dim ws As Worksheet, wsD As Worksheet, Cel As Range, xCourse As String, xDate As Date
Set ws = Sheets("Sheet2")
Set wsD = Sheets("DELEGATES")
xCourse = "*" & LCase(Worksheets("RENEWALS").Range("B3").Value) & "*"
xDate = Date + 180
Application.ScreenUpdating = False

For Each Cel In wsD.Range("R2", wsD.Range("R" & wsD.Rows.Count).End(xlUp))
    If LCase(Cel) Like xCourse Then
        If Cel.Offset(, 2) <= xDate Then Cel.EntireRow.Copy ws.Cells(ws.Rows.Count, 1).End(xlUp).Offset(1)
    End If
Next Cel

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,649
Members
448,975
Latest member
sweeberry

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