Greetings,
I am receiving an object required error on the following line:
Other applicable lines include the following:
j is an integer.
I am not concerned with the column value used to identify the range object so long as the final result allows for the selection of a cell all the way to the right of the consumed adjacent row cells plus one more column over.
I am receiving an object required error on the following line:
Code:
COM.Worksheets(AC).Range(Cells(j, Column.End(xlToRight) + 1)).PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks:=False, Transpose:=False
Other applicable lines include the following:
Code:
AC = ws.Name
Code:
Dim AC As String
Code:
Set COM = Workbooks("COMM_COMBINED.xls")
j is an integer.
I am not concerned with the column value used to identify the range object so long as the final result allows for the selection of a cell all the way to the right of the consumed adjacent row cells plus one more column over.