Hi,
I m trying to paste only the value from a merged cell ("C10:K10"), to the next empty cell in column N. The code I am using unsuccessfully is below:
Range("C10:K10").Copy
Range("N" & Rows.Count).End(xlUp).Offset(1).Select
ActiveSheet.PasteSpecial xlPasteValues
Application.ScreenUpdating = True
Please can someone give me some advice.
Thank you.
I m trying to paste only the value from a merged cell ("C10:K10"), to the next empty cell in column N. The code I am using unsuccessfully is below:
Range("C10:K10").Copy
Range("N" & Rows.Count).End(xlUp).Offset(1).Select
ActiveSheet.PasteSpecial xlPasteValues
Application.ScreenUpdating = True
Please can someone give me some advice.
Thank you.