Tuesday, June 28, 2022

Automatic copy to paste data in excel

 Sub hello()

Range("A1:A10").Copy

Range("F1:F10").PasteSpecial xlPasteValues


Application.CutCopyMode = False


Range("A2:A10").Font.ColorIndex = 10


Call test


End Sub

Sub test()

Application.OnTime Now + TimeValue("00:00:10"), "hello"

End Sub

No comments:

Post a Comment

THANKS FOR YOUR SUPPORT

Data copy paste on two another sheet with add row in google sheet by script

 function copyDataWithinWorkbook() {   var sourceSheetName = "Dashbord"; // Replace with the name of the source sheet   var target...