View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bernie Deitrick Bernie Deitrick is offline
external usenet poster
 
Posts: 5,441
Default Interrupting an add line

Brian,

Use two lines to do the copy/paste:

Sheets("input").Range("A20:M20").Copy Destination:= _
Sheets("database").Cells(Rows.Count, 1).End(xlUp) _
.Offset(1, 0)
Sheets("input").Range("Q20:AB20").Copy Destination:= _
Sheets("database").Cells(Rows.Count,
Range("Q1").Column).End(xlUp) _
.Offset(1, 0)

HTH,
Bernie
MS Excel MVP

"Brian McGuire" wrote in message
...
I am using the following code to add data to the next open line on a

spreadsheet:

Sub AddData()

' Macro recorded 12/8/2003 by Brian McGuire

Sheets("input").Range("A20:AB20").Copy Destination:= _
Sheets("database").Cells(Rows.Count, 1).End(xlUp) _
.Offset(1, 0)
Worksheets("input").Range("A20:AB20").ClearContent s

End Sub

This works fine, but I now need to skip columns N, O, and P when

adding this data. These are calculated via a formula using data from
other rows, and I need to keep this formula in the destination cell
for the sake of future editing of data in the actual spreadsheet. How
can I still add all the columns to the next open row, but skip the
three I have mentioned. Thanks in advance.

Brian