-
-
Save zhonmaz/eab1bc1856e6bac4a91029f570c6d520 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub copy() | |
Path = "K:\My Drive\Working\SHAREKYNANG\Content\" | |
Filename = Dir(Path & "*.xls*") | |
Do While Filename <> "" | |
Workbooks.Open Filename:=Path & Filename, ReadOnly:=True | |
For Each Sheet In ActiveWorkbook.Sheets | |
Sheet.copy after:=ThisWorkbook.Sheets(1) | |
Next | |
Workbooks(Filename).Close | |
Filename = Dir() | |
Loop | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment