B
Bishop
I have the following code:
Worksheets("Fail Stats").Cells(FSStartRow, "A") = Cells(i - 5, "A").Value
I keep getting Application-defined or object-defined error. I also tried:
Worksheets("Fail Stats").Cells(FSStartRow, "A") =
Worksheets(center(i)).Cells(i - 5, "A").Value
But that didn't work either. What am I doing wrong?
Worksheets("Fail Stats").Cells(FSStartRow, "A") = Cells(i - 5, "A").Value
I keep getting Application-defined or object-defined error. I also tried:
Worksheets("Fail Stats").Cells(FSStartRow, "A") =
Worksheets(center(i)).Cells(i - 5, "A").Value
But that didn't work either. What am I doing wrong?