I have the following lines which are part of code to copy from a named range (NewName_451) to the next free line of column range (RangeNames451):
But I don't want to copy the cell format, just the text. How do I modify code so it just pastes the text, tried adding PasteSpecial Paste:=xlPasteValues but get an error message,
Code:
Range("NewName_451").Copy Range("c8").End(xlDown).Offset(1,0)
But I don't want to copy the cell format, just the text. How do I modify code so it just pastes the text, tried adding PasteSpecial Paste:=xlPasteValues but get an error message,