Learn how to design Excel VBA
macros that solve business tasks in seconds.
Over 1000+ pages of useful Excel VBA topics covering basic programming concepts, the VBA
language, debugging, controlling key Excel elements, data processing, automated charts, custom worksheet functions, modeling and basic dashboards.
Questions? 1.805.498.7162 Customers >
Microsoft Excel VBA Manual Specifics
For: |
Business Professionals |
Format: |
ADOBE PDF and Excel Files
as zip file download |
Details: |
Covers beginning to intermediate Excel VBA topics |
Book: |
1000+ pages with examples |
Platform: |
Windows 7 - Windows 10 |
Sent: |
Sent within 3 hr after purchase Mon-Fri 8:30 AM - 5:00 PM PT |
Versions: |
Excel for Windows 2007-2019, Microsoft 365 |
Manual Introduction.
Our Microsoft Excel VBA self study manual covers
the basics of programming along with the main stream application of using VBA with Excel
to solve business problems. It covers
the programming fundamentals such as loops, variables, arrays and logic and controlling key Microsoft Excel components with VBA.
Our manual also covers key data processing strategies for data on single and multiple
worksheets including building summary sheets and performing table lookups. It also covers automated chart construction and basic dashboard topics. It uses real world examples that lets you start
building useful Excel VBA macros right away.
Price: $99.00
Add to Cart
Our Refund Policy >
Learning Module 12: VBA Editor and Module Basics
- VBA overview, what is VBA, how is it used
- VBA project and module overview
- What is a procedure and its basic structure?
- How to use key procedure types used in VBA
- VBA statement, syntax and keyword overview
- VBA editor overview, operation and window review
- Macro protection review
- How to manage VBA modules and type in them
- How to turn off and on key VBA Editor features
- VBA procedure calling rules
- Referencing and integrating code from other VBA projects
- How to debug your code using the VBA Editor
Learning Module 13: VBA Language Review | Controlling Key Excel Elements with VBA
- VBA variables, constants and arrays (declaring, scope and data typing)
- How to create and use expressions in VBA that perform calculations
- How to use different operators in your expressions (logical, arithmetic, string, comparison...)
- How to run VBA and Excel functions in your procedures
- How to use VBA arrays in your procedures
- How to create and use logic in your procedures
- How to create and use For and Do loops in your procedures
- What is an object, a property and a method
- How to correctly build object expressions that identify and command Excel objects
- How to run properties and methods in your VBA procedures
- How to create and effectively use Set statements in your VBA code
- How to build For…Each Next loops to loop through objects scanning for items
- How to use Excel/VBA on-line help
- How to use the VBA macro recorder to record Excel business tasks in VBA
- How to use the Object Browser to look up Objects and their code
- How to provide error protection in your procedures
- Controlling Excel, Workbooks, Worksheets, Windows, Page Setup and PivotTables with VBA
- Controlling Ranges, Range Fonts, Range Borders, Range Colors with VBA
- Controlling Conditional Formatting, Data Validation, Sorting, Excel Tables and Queries with VBA
- How to lock on to changing worksheet data using VBA
- How to use VBA to control and build charts
- Basic data processing strategies for processing worksheet data using VBA
- How to build basic dashboards in Excel by automating charts, drawing shapes and worksheet cells
Learning Module 14: VBA Function Procedure Design
- Benefits of using Function procedures and User Defined Worksheet Functions (UDF's) for business tasks
- Function procedure and UDF differences
- How to declare Function procedures and UDF’s in VBA
- How to create arguments for Function procedures and UDF’s
- How to call UDF’s from a worksheet formula
- Calling Function procedures from other VBA procedures
- Function procedure and UDF procedure interface design
- How to pass worksheet ranges as arguments to UDF's
- Returning scalar and array values from UDF’s to worksheet formulas
- Using VBA and Excel Worksheet functions in your VBA procedures
Learning Module 15: VBA Sub Procedure Design
- Benefits of using Sub procedures for business tasks
- Declaring Sub procedures in VBA
- Creating arguments for Sub procedures
- Calling Sub procedures from other VBA procedures
- Executing Sub procedures via the Macro dialog box
- Executing Sub procedures via shortcut keys
- Executing Sub procedures via graphics
- How to run Sub Procedures by assigning them to drawing shapes and pictures
- How to assign Sub procedures to shapes and pictures using VBA
- How to tell what picture or shape button was clicked using VBA
- Sub procedure interface design
- Sub procedure design tips
- Property procedure overview