| 
                    
                         Be the first user to complete this post  
                    
                     | 
                Add to List | 
VBA-Excel: Create a WorkBook at Runtime.
Using VBA (Visual Basic for Applications) , you can create Excel workbook at the runtime by using Add() method.
If you won’t provide any name for the workbook it will be created as BookN, where N will increase automatically, starting from 0, as you call WorkBook.Add() function.
Function FnCreateWorkBook()
         Dim objWorkBook As Workbook
         Set objWorkBook = Workbooks.Add
         objWorkBook.SaveAs Filename:="NewWorkBook.xls"
End Function
.Add() method creates a workbook and return object of the that. Later on you can use that object to save it to specific location or other operations.
Also Read:
- VBA-Excel: Get all the WeekDays or Working days in Specified Date Range, (excluding Satudays and Sundays)
 - VBA-Excel: Select and Activate Cells - Select
 - VBA-Excel: Copy/Paste data - Copy the Entire data from one sheet to another
 - Add Tools to Quick Access Tool Bar(Excel Top Bar)
 - VBA Excel – Looping Through a Range of Cells