Karthik Thandapani
Member
Sorry, a correction..
Just wondering if there is a possible flow to move/copy worksheets from 2 or multiple workbooks which are saved in a folder? Thanks
Hi,
Just wondering if there is a possible flow to get worksheet names from 2 or multiple workbooks which are saved in a folder?
Sub SheetNames()
Columns(1).Insert
For i = 1 To Sheets.Count
Cells(i, 1) = Sheets(i).Name
Next i
End Sub
Thanks in advance,
Karthik
Just wondering if there is a possible flow to move/copy worksheets from 2 or multiple workbooks which are saved in a folder? Thanks
Hi,
Just wondering if there is a possible flow to get worksheet names from 2 or multiple workbooks which are saved in a folder?
Sub SheetNames()
Columns(1).Insert
For i = 1 To Sheets.Count
Cells(i, 1) = Sheets(i).Name
Next i
End Sub
Thanks in advance,
Karthik
Last edited: