
Master automating charts in Excel with VBA by recording creation, naming charts, setting data sources, and positioning chart objects through macros.
Explore how to use a collection loop to retrieve items from a pivot field, specifically the zone field, and capture pivot item names to automate Excel VBA tasks.
Create and manage pivots in Excel VBA by defining dynamic ranges and placing pivots at G2 and G10, using templates and user inputs for sheet and range.
Learn to update every pivot across all worksheets in excel using vba, changing sum to average and aligning captions and fields, with practical debugging tips for pivot properties.
Explore how to work with slicers in Excel VBA by looping slicer caches and listing slicer items. Reference slicer names to manage pivot data efficiently.
Understand the PowerPoint object hierarchy and connect PowerPoint with Excel VBA using the PowerPoint 16.0 object library, early binding, and dot operator to export charts or ranges.
Learn to automate PowerPoint slide creation with Excel VBA by looping from 1 to 50 to add slides, manage slide indices, and save the presentation.
learn to count the number of slides in an existing powerpoint presentation using vba by referencing the active presentation’s slides.count and displaying the result with a message box.
Export charts from multiple Excel sheets to PowerPoint using the PowerPoint object hierarchy, early binding, and collection loops to create slides and paste charts.
Shows how to connect Excel and PowerPoint with a VBA macro that copies a range from Excel and pastes it into slide nine, with prompts for file, sheet, and range.
Learn to update access tables from Excel VBA using update queries, including syntax, criteria, and text handling, and apply these with a user form interface.
Learn to write and execute delete queries in Access VBA, using where clauses to remove specific records, or delete star to clear entire tables with SQL syntax.
In first Section, we are learning about Chart automation. How to create new charts iusing VBA. We can fully automate the making of charts using VBA.
Learn the Chart class called Chart and see how easy it is to create the new charts.
The role of macro recordings plays a very important role here as most of the code we can record and later customize as per the requirement.
How to work with existing charts in excel. How to go to each of them one by one and do modifications. Any type of modification like changing chart design or editing labels or chart titles etc
Understand the Loops importance in charts. You can loop through infinite charts using one simple collection loop.
Collection loops of charts - to work with multiple charts either to delete them or to edit their design, colors. You can do whatever. Even change the axis's.
Use of other Collection loops with chart collection loops. Loops in Loops
In section2, you will become master in Pivots. From making new pivots to working in existing pivots and modifying them
Collection loops in PIvots - how to access pivots . How to loop pivot field items and fully control it.
We will learn the classes we use in Pivots to handle new pivots or existing pivots like Pivot-table and Pivot cache classes.
We will take a deep dive into knowing other classes as well which helps us in controlling the pivot fields and field items like pivot item class and pivot-Field class.
How to mix worksheet collection loops with pivot collection loops in real time projects and what are the benefits of same
What is the role of macro recording in making pivots and how to edit those recording if requirement changes.
How to work with row or column of filter pivot fields. Line by line explanation.
In Section3 , we are learning how to connect Powerpoint with Excel VBA.
Discussing about the connectivity of Excel with PowerPoint in this advance series using Excel VBA.
How to copy table data from excel and paste into PowerPoint application slides.
How to export charts from excel sheets to PowerPoint and paste them in one slide or more slides one by one.
Taking a deep dive into power-point classes like Presentation class, Slide class and shapes class. Understanding the power-point object hierarchy.
How every class is responsible for other class using the dot hierarchy.
How to work with already created PowerPoint applications and also how to create new PowerPoint applications and work with them.
How to resize the charts or tables images in slides and move them to the top or left or right of the slides.
Control which chart should go in PowerPoint using the excel sheet cells.
How to loop through all sides and decide which one to be deleted or used for data presentation.
Collection loops for slides as well as shapes. This is amazing source of learning.
Real time projects discussion with you to give you live exposure of working with Power-point.
Understanding the concept of Early Binding and Late Binding methods or techniques
Several highly advance level Projects for you - Fully automated and very very knowledgeable practical projects.
In Section4 , we are learning how to connect with databases like ms access using SQL commands in Excel VBA.
How to retrieve information from a database using SQL in vba
How to delete/ update and insert the information in database like ms access using VBA and also using Userforms