Hi
i have 2 excel, i want to copy data from one excel & paste in second excel have 5 sheet same data Paste then how i do it.
before paste same data in second excel of 5 sheet like Sheet A, Sheet B, Sheet C, Sheet D
clear or delete all data from Sheet A,B,C,D
How i do it?
in same excel how clear data from 5 sheets
@yogitagaikwad2206
Simply try below
Array_SheetNames={"Sheet1","Sheet2","Sheet3","Sheet4","Sheet5"}
Sequence8.xaml (11.3 KB)
Regards,
@yogitagaikwad2206
Use Macros
Sub ClearSheet()
Sheets("SheetA").Cells.Clear
Sheets("SheetB").Cells.Clear
Sheets("SheetC").Cells.Clear
Sheets("SheetD").Cells.Clear
End Sub
now i want to copy data from one sheet with range & paste in other excel which has 5 sheet
same data paste in all 5 sheet how i do it
@yogitagaikwad2206
Better to create new topic as it is different topic, i will help you
Regards,
system
(system)
Closed
July 1, 2024, 8:50am
9
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.