Hi
Can anyone please provide a code snippet to paste a cell value in multiple sheets (but same cell with all sheets). Is this possible with array?
Copy a value from home tab cell A1 & paste that into sheet1, sheet2 (cell H16)
Thanks
Can anyone please provide a code snippet to paste a cell value in multiple sheets (but same cell with all sheets). Is this possible with array?
Code:
Worksheets("Home").Range("A1").Copy _
Destination:=Worksheets(Array("Sheet1", "Sheet2")).Range("H16")
Copy a value from home tab cell A1 & paste that into sheet1, sheet2 (cell H16)
Thanks