As mentioned above in the title. I have been looking out for ways. I have tried the method of using VB scripting to combine excel workbooks into one excel workbook. However, while i was doing the scripting, there was no sign of the compilation of all the workbook into the master workbook.
Here is my VB script that i've done:
Sub GetSheets()
Path = "C:\Users\..."
Filename = Dir(Path & ".xlsx")
Do While Filename <> ""
Workbooks.Open Filename:=Path & Filename, ReadOnly:=True
For Each Sheet In ActiveWorkbook.Sheets
Sheet.Copy After:=This.Workbook.Sheets(1)
Next Sheet
Workbooks(Filename).Close
Filename = Dir()
Loop
End Sub