What I need is to copy the contents of the entire line and formatting to another sheet.
At the moment, I had to decide to set the contents of the old cells to the contents of the new cells, and in doing so, it only copies the contents, not the formatting. (my cells have different colors that need to be transferred)
I currently have the following: (this works fine for cells on a single sheet)
Range(Cells(45, 2), Cells(45, 3)).Copy Range(Cells(50, 2), Cells(50, 3))
However, I am trying to do this from one sheet to another. (Copy from the sheet "Front_Page" to "vg"). I tried using the following, obviously this will not work, but can someone please tell me what am I doing wrong?
Range.Worksheet("Front_Page").Range(Cells(45, 2), Cells(45, 3)).Copy Worksheet("vg").Range(Cells(50, 2), Cells(50, 3))
source share