I have never written an Excel macro and this is my first attempt to write one by mimicing something I found on stackoverflow.
I want to copy certain columns (A,B and E) from one workbook to another and also change the font and color of certain Rows and edit the text in certain cells (replace a long phrase with the word "Group") automatically by writing a macro. But I am running into errors while copying just one column.
This is the code I copied without change:
Sub CopyColumnToWorkbook()
Dim sourceColumn As Range, targetColumn As Range
Set sourceColumn = Workbooks("Source").Worksheets("Sheet1").Columns("A")
Set targetColumn = Workbooks("Target").Worksheets("Sheet1").Columns("A")
sourceColumn.Copy Destination:=targetColumn
End Sub
I am getting a runtime error 9 and the line below is highlighted:
Set sourceColumn = Workbooks("Source").Worksheets("Sheet1").Columns("A")
I am attaching the Source and Target files below as I hope they would look like at the end of a successful run.
Any guidance will be greatly appreciated. In the mean time I am trawling google to slowly learn how to write macros in Excel.