I replaced my code with yours and still get the 1004 error
on the new line of code. Here's all the code for my macro,
if that helps. I am trying to enter a description on the
first sheet, which then puts that description in column B
on the next available line in the second sheet and assigns
the next number in column A and then displays that next
number back on the first sheet.
Range("B6").Select
ActiveCell.FormulaR1C1 = "=1+'Assigned Drawing
Numbers'!R[8]C[-1]"
Range("B6").Select
Selection.Copy
Sheets("Assigned Drawing Numbers").Select
ActiveSheet.Cells(Rows.Count, "A").End(x1down).Offset
(1, 0).Select
Selection.PasteSpecial Paste:=xlValues,
Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Range("B15").Select
Sheets("New Drawing").Select
Application.CutCopyMode = False
Range("B4").Select
Selection.Cut
Sheets("Assigned Drawing Numbers").Select
ActiveSheet.Paste
Sheets("New Drawing").Select
Range("B4").Select