redspanna
Well-known Member
- Joined
- Jul 27, 2005
- Messages
- 1,604
- Office Version
- 365
- Platform
- Windows
I have following code to search through a column to find matched text string....value (in next column) is then copied into first available vell in column C
How to change code to paste copied value into next available cell in Column C starting from a certain cell range..
for example C22
Thanks in advnce
Code:
Set mycell = Sheets("Sorted Data").Range("A:A").Find(What:="*ASDASTORESPLC*")
While Not mycell Is Nothing
mycell.Offset(0, 1).Copy Range("C65536").End(xlUp)(-2)
mycell.Clear
Set mycell = Range("A:A").FindNext
Wend
How to change code to paste copied value into next available cell in Column C starting from a certain cell range..
for example C22
Thanks in advnce