Sub test() ' ' test Macro '
Dim aRange As Range
Dim i As Integer
Set aRange = Range("A1:A255")
Range("A1").Select
For i = 1 To aRange.Count - 1
If InStr(ActiveCell.Value, "Last name") Then
Call CopyContents
End If
ActiveCell.Offset(1, 0).Select
Next i
End Sub
Sub CopyContents()
Dim currentRange As Range
Dim genderAndDiscipline As String
Set currentRange = Range(ActiveCell.Address)
'get the gender and dicipline
Set genderAndDiscipline = ActiveCell.Offset(-1, 0).Value
'genderAndDiscipline = genderAndDiscipline.Split(" ")
End Sub
I'm trying to store a cell value in a variable. But somehow it's keep giving me an compile error:
Object required
In my opinion, I'm telling the variable to aspect a string and the cell is containing a string, as the debugger says.
The currentRange is 'A7' here and the cell above is containing a string with '200m men'
The error occurs at
Set genderAndDiscipline = ActiveCell.Offset(-1, 0).Value
Setkeyword from that line