With Sheets("Notes").Range("A:A")
Set rngFindPC = .Find(a(UBound(a)), , xlValues, MatchCase:=False)
End With
If rngFindPC Is Nothing Then 'not found
MsgBox "not found"
Else
Application.Goto rngFindPC, False 'found
Dim i As Integer
Dim myarray As Variant
myarray = Range(Range(activecell.offset(0,1).address, Cells(ActiveCell.Row, 256).End(xlToLeft).Select
'myarray = Range(Range(ActiveCell.Offset(0, 1).Address, Cells(Rows.Count, 1).End(xlToLeft)))
'myarray = Range(ActiveCell.Offset(0, 1), Cells(Rows.Count, 1).End(xlToRight)).Value
'Looping structure to look at array.
For i = 1 To UBound(myarray)
MsgBox myarray(i, 1)
Next
End If