VBA How to copy the content of a cell without .Select

前端 未结 3 1917
小蘑菇
小蘑菇 2021-02-07 18:56

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 formatting. Is there a way I

3条回答
  •  一生所求
    2021-02-07 18:59

    to copy and paste values only then use following

    Worksheets("Label").Range("A1").value = _
       Worksheets("Get Address").Range("A33").value
    

    this statement will not use clip board

提交回复
热议问题