Hello!
I'm using the following to copy values from one sheet to another:
Sub Copycopy()
Range("B3").Copy Sheets("Sheet2").Range("B" & Rows.Count).End(xlUp).Offset(1, 0)
Range("B4").Copy Sheets("Sheet2").Range("B" & Columns.Count).End(xlUp).Offset(0, 1)
Range("B5").Copy Sheets("Sheet2").Range("B" & Columns.Count).End(xlUp).Offset(0, 2)
End Sub
The problem is that it's coping the format of the cell containing the information, and I don't want that. I want to copy values only. What do I need to modify on my code?
Thanks!!!!
I'm using the following to copy values from one sheet to another:
Sub Copycopy()
Range("B3").Copy Sheets("Sheet2").Range("B" & Rows.Count).End(xlUp).Offset(1, 0)
Range("B4").Copy Sheets("Sheet2").Range("B" & Columns.Count).End(xlUp).Offset(0, 1)
Range("B5").Copy Sheets("Sheet2").Range("B" & Columns.Count).End(xlUp).Offset(0, 2)
End Sub
The problem is that it's coping the format of the cell containing the information, and I don't want that. I want to copy values only. What do I need to modify on my code?
Thanks!!!!