Workbooks.Open Filename:= _
"T:\TEST\Error Log Report\External report.xlsx"
Range("A2:H2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Windows("Bank Perfomance Metric.xlsm").Activate
Sheets("Bank Error").Select
lMaxRows = Cells(Rows.Count, "a").End(xlUp).Row
Range("a" & lMaxRows + 1).Select
ActiveSheet.Paste
lMaxRows = Cells(Rows.Count, "I").End(xlUp).Row
Range("I" & lMaxRows + 1).Select
ActiveCell.FormulaR1C1 = "2"
ActiveCell.Copy
??????????
Hi Eveyone,
I am looking for some help with my above macro. I am trying to fill out the missing steps that will autofill "2" down to the last cell in column I that corresponds to the data in columns A-G. Your help is very much appreciated.
"T:\TEST\Error Log Report\External report.xlsx"
Range("A2:H2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Windows("Bank Perfomance Metric.xlsm").Activate
Sheets("Bank Error").Select
lMaxRows = Cells(Rows.Count, "a").End(xlUp).Row
Range("a" & lMaxRows + 1).Select
ActiveSheet.Paste
lMaxRows = Cells(Rows.Count, "I").End(xlUp).Row
Range("I" & lMaxRows + 1).Select
ActiveCell.FormulaR1C1 = "2"
ActiveCell.Copy
??????????
Hi Eveyone,
I am looking for some help with my above macro. I am trying to fill out the missing steps that will autofill "2" down to the last cell in column I that corresponds to the data in columns A-G. Your help is very much appreciated.