fari1
Active Member
- Joined
- May 29, 2011
- Messages
- 362
i've a code, that cuts and paste the first used cell from the column A, this works fine when run individually, but when its the part of the loop, it stops somewhere in the middle and then dont cut and paste the first used cell, it just dont give any resullts
ANY HELP WOULD BE HIGHLY APPRECIATED
Code:
Sub usedsymbols()
Dim mycell As Range
Application.CutCopyMode = True
Sheets("symbols").Select
With Sheets("symbols")
With .Columns("A")
.Find(what:="*", after:=.Cells(1, 1), LookIn:=xlValues).Activate
Set mycell = ActiveCell
mycell.Cut Sheets("Log").Range("A" & Rows.Count).End(xlUp).Offset(1)
End With
End With
Application.CutCopyMode = False
End Sub
ANY HELP WOULD BE HIGHLY APPRECIATED