RicksAtWork
Programmer
I have filtered a worksheet via the following code:
Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:=CStr(individual)
On JUST this selection I want to iterate throw column b and perform a VLookUp for each row:
myAnswer = Application.WorksheetFunction.VLookup(row here, Range("Scoring_JournalTitle"), 4, False)
How do I iterate through the filtered rows?
Selection.AutoFilter
Selection.AutoFilter Field:=1, Criteria1:=CStr(individual)
On JUST this selection I want to iterate throw column b and perform a VLookUp for each row:
myAnswer = Application.WorksheetFunction.VLookup(row here, Range("Scoring_JournalTitle"), 4, False)
How do I iterate through the filtered rows?