Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I am trying to use the below code to add a calculated field to a report I am working on. Unfortunately an error is trigered on the autofill line. I am not sure what causes this but if in break mode i go into the sheet and select the cell and then run the code again it seems to work. Does anyone know why this happens? TIA Sub ZPOHeader() Dim iLRowHeader As Integer iLRowHeader = Sheets("ZPOHeader").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row - 1 'Update currency in ZPOHeader With Sheets("ZPOHeader") ..Range("N1").Value = "Eur Amount" ..Range("N2").Formula = "=M2*VLOOKUP(I2,Xrates!$A$2:$B$8,2,0)" ..Range("N2").AutoFill Destination:=Range("N2:N" & iLRowHeader) ..Columns(14).NumberFormat = "_(* #,##0.00_);_(* (#,##0.00);_(* ""-""??_);_(@_)" End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Run-time error '1004': AutoFill method of Range class failed | Excel Discussion (Misc queries) | |||
Run-time error '1004': AutoFill method of Range class failed | Excel Discussion (Misc queries) | |||
Autofill & On Error Resume Next | Excel Discussion (Misc queries) | |||
Q. Autofill question: Can I autofill alpha characters like I can numbers? | Excel Programming | |||
autofill macro has error when there is nothing to fill. | Excel Programming |