Dim ffRow, ffCol As Integer
Set Master = Sheets("Master")
Master.Range(Cells(ffRow, ffCol + 3), Cells(ffRow, ffCol + 13)).Copy
The copy does not work and I cannot figure it out!
I have also tried
I am trying to copy the range D2:N2 using ffCol. Afterwards, it would be O2:Y2 using ffCol + 14 and ffCol + 25
Any help is greatly appreciated
Set Master = Sheets("Master")
Master.Range(Cells(ffRow, ffCol + 3), Cells(ffRow, ffCol + 13)).Copy
The copy does not work and I cannot figure it out!
I have also tried
Master.Range(Range(ffRow, ffCol + 3), Range(ffRow, ffCol + 13)).Copy
I am trying to copy the range D2:N2 using ffCol. Afterwards, it would be O2:Y2 using ffCol + 14 and ffCol + 25
Any help is greatly appreciated