Learn the fundamentals of Excel VBA and how it can be applied to engineering and science tools.
Over 1000 + pages of useful Excel VBA topics, design strategies and example code covering topics like data processing, modeling, chart construction, reporting and much more.
Questions? 1.805.498.7162 Customers >
Microsoft Excel VBA Manual Specifics
For: |
Engineers and Scientists |
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.
This Microsoft Excel VBA self study manual covers how to apply VBA programming
to engineering and science problems. From VBA programming fundamentals like loops, variables and logic to using Excel VBA to control workbooks, worksheets and
ranges, it covers what you need to develop powerful tools.
Other Excel VBA topics covered include
controlling various Excel elements, data processing, automated chart construction, basic Excel VBA dashboards, modeling, custom worksheet functions (UDF's)
and numerical analysis approaches. It uses real engineering and science examples that let you start building useable Excel VBA macros in Excel right away.
Price: $99.00
Add to Cart
Our Refund Policy >
Learning Module 5: 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 6: 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 engineering and science 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 7: VBA Function Procedure Design
- Benefits of using Function procedures and User Defined Worksheet Functions (UDF's) for engineering and science 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 8: VBA Sub Procedure Design
- Benefits of using Sub procedures for engineering and science 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