Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, can someone look at the following code, which copies certain data from
sheet 'claims' to sheet 'charging', and suggest why it doesn't work? It is in a module and worked ok until recently so I am wondering if code elsewhere in the workbook is affecting it somehow. I get the error message "Compile error: Argument not optional" with 'Last Row' (line 5) highlighted: Sub Charge() If ActiveCell.Value = "C" Then RowNo = ActiveCell.Row With Sheets("Charging") LastRow = .Range("B" & Rows.Count).End(xlUp).Row Newrow = LastRow + 1 End With Sheets("Charging").Range("B" & Newrow).Value = _ Sheets("claims").Range("D" & RowNo) Sheets("Charging").Range("C" & Newrow).Value = _ Sheets("claims").Range("E" & RowNo) Sheets("Charging").Range("D" & Newrow).Value = _ Sheets("claims").Range("F" & RowNo) Sheets("Charging").Range("E" & Newrow).Value = _ Sheets("claims").Range("G" & RowNo) Sheets("Charging").Range("F" & Newrow).Value = "14.50" Sheets("claims").Activate Application.Goto Reference:=Worksheets("Claims").Range("F" & Newrow) End If End Sub Thanks for your suggestions -- Traa Dy Liooar Jock |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SUMIF no longer working | Excel Discussion (Misc queries) | |||
SUMIF no longer working | Excel Worksheet Functions | |||
hyperlinks no longer working | Excel Discussion (Misc queries) | |||
Macro no longer working - Don Guillett | Excel Programming | |||
Formulas no longer working | Excel Worksheet Functions |