120+ Professional Project Management Templates!

Save Up to 85% LIMITED TIME OFFER

PNRao

About PNRao

Hi, I’m PNRao—an Excel & VBA developer with 20 years in data mining, automation, and project management. Day-to-day I turn raw data into clear insight, replace repetitive work with one-click workflows, and guide teams with smarter project management. On Analysistabs.com I share battle-tested tips on Excel, VBA, SQL, Automation, Project Management, and Data Analysis—plus a growing library of free and premium Project Management Templates. My goal is to help you work faster, build sharper tools, and level up your career. Let's master data and manage projects effectively, together.

Introduction to VBA

2022-06-17T03:55:50+05:30

VBA is a common language for all MS Office Tools (Excel, Word, PowerPoint,Outlook,Access), if you learn Excel VBA, you can able to automate any MS Office Tool , the only change is object model.

In this session:
  • Introduction to VBA
  • Why should I learn VBA?
  • What things can we do using VBA?
  • How many ways we can automate tasks using VBA?
Introduction to VBA2022-06-17T03:55:50+05:30

Save Workbook Using Excel VBA to Specific Folder

2022-06-17T03:52:54+05:30

Solutions: You can use SaveAs method to Save the File Example: Sub ExampleToSaveWorkbook() Workbooks.Add 'Saving the Workbook ActiveWorkbook.SaveAs "C:WorkbookName.xls" 'OR 'ActiveWorkbook.SaveAs Filename:="C:WorkbookName1.xls" End Sub

Save Workbook Using Excel VBA to Specific Folder2022-06-17T03:52:54+05:30
Go to Top