VBA How to copy the content of a cell without .Select
问题 I am writing a method that can take the Target and paste the cell exactly to another cell. The cell is a shipping label with some fancy formating. Is there a way I can do it? Originally I have this: Worksheets("Label").Range("A1").Value = Worksheets("Get Address").Range("A28").Value It worked for the plain text. However I lost the styling I created, they are different because after the first line, the style is different: I also tried to use Macro Recorder and I got a solution using .Select ,