View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
gocush[_29_] gocush[_29_] is offline
external usenet poster
 
Posts: 252
Default minor modification to macro, need to delete cells

Michael,
Not sure from you post if you want to clear cell A,E & F in the source sheet
or the destination sheet. Below is guessing the Dest sheet.

Sub CopyToSheetz()

Dim rng As Range
Dim oCell As Range
Dim Dest as Range

Set rng = Range("B4:B" & Cells(Rows.Count, "B").End(xlUp).Row)
For Each oCell In rng
Set Dest = Sheets(oCell.Value).Range("A65536").End(xlUp).Offs et(1,
0)
oCell.EntireRow.Copy Dest
'Clear cell A,E, and F
Dest.Clearcontents
Dest.Offset(0,4).ClearContents
Dest.Offset(0,5).ClearContents

Next oCell

Set Dest = Nothing
Set Rng = Nothing
Set oCell = Nothing
End Sub


"Michael A" wrote:

can someone help me add to his macro, after it copys each line I need it to
delete the values in the A Column , E Column and F column, but i cant figure
it out.. anyone help would be appreciated. Thanks!


Sub CopyToSheetz()

Dim rng As Range
Dim oCell As Range

Set rng = Range("B4:B" & Cells(Rows.Count, "B").End(xlUp).Row)
For Each oCell In rng
oCell.EntireRow.Copy _
Destination:=Sheets(oCell.Value).Range("A65536").E nd(xlUp).Offset(1,
0)


Next oCell


End Sub