Hi All,
I hope you will be able to help me. I tried to look online for solution but no luck so far.
What I am trying to do is to search for text ie "Apple" in col A.
Once found I want to set the last used cell as source to replicate the value in destination.
I have the search bit which works but can't figure out how to get the last cell from range cel row.
Dim SrchRng As Range, cel As Range
Set SrchRng = WorkBk.Worksheets(1).Range("A1:A100")
For Each cel In SrchRng
If InStr(1, cel.Value, "Apple") > 0 Then
Thanks in advance for your help
I hope you will be able to help me. I tried to look online for solution but no luck so far.
What I am trying to do is to search for text ie "Apple" in col A.
Once found I want to set the last used cell as source to replicate the value in destination.
I have the search bit which works but can't figure out how to get the last cell from range cel row.
Dim SrchRng As Range, cel As Range
Set SrchRng = WorkBk.Worksheets(1).Range("A1:A100")
For Each cel In SrchRng
If InStr(1, cel.Value, "Apple") > 0 Then
Thanks in advance for your help