On Demand Webinar
Webinar Details $219
- Webinar Length: 100 Minutes
- Guest Speaker: David Ringstrom
- Topic: Business Administration, Business Skills, Software, Taxation and Accounting, Finance
- Credit: ATAAA 1.5, ATATX 1.5, ATAOP 1.5, CPE 2.0
-
This is the perfect course for those who want to learn even more about Excel macros. Step-by-step, Excel expert David Ringstrom walks you through the process of creating custom dialog boxes that can add interactivity in Excel and better manage a user’s actions. He then builds a custom printing interface that he dubbed “Plug and Print,” which allows you to pick and choose the worksheets to print from any workbook. The presentation also teaches you how to create a basic UserForm for prompting users to input data, including all the required fields. Finally, you’ll see how to move module sheets and UserForms between workbooks, as well as how to remove them from workbooks when they’re no longer needed.
David demonstrates every technique at least twice: first, on a PowerPoint slide with numbered steps, and second, in Excel 2016. He draws your attention to any differences in Excel 2013, 2010, or 2007 during the presentation as well as in his detailed handouts. David also provides an Excel workbook that includes most of the examples he uses during the webcast.
Who Would Be Interested in This Course:
Practitioners seeking to incorporate custom user interfaces into Excel spreadsheets by way of UserForms and related Visual Basic for Applications programming code.
Your Benefits of Attending:
- Dressing up UserForms with Frames as well as using Frames to isolate sets of OptionButtons.
- Testing the Plug and Print UserForm to see how additional worksheets appear automatically in the list of sheets that can be printed.
- Creating a macro to launch a UserForm.
- Triggering macros in Excel by way of CommandButtons added to UserForms.
- Contrasting Option Buttons to CheckBoxes on UserForms for allowing a single selection from two or more choices.
- Moving module sheets or UserForms from one workbook to another.
- Incorporating a new feature that enables you to pick and choose the worksheets to print from any workbook—no programming knowledge or experience required.
- Creating a UserForm or custom dialog box from scratch in Excel.
- Adding CheckBoxes to UserForms to enable users to make selections.
- Adding label controls to UserForms to add captions or display instructions.
- State the method in Visual Basic for Applications that would display a UserForm.
- Recall the aspect of the Properties Window that allows you to change the wording that appears at the top of a Frame control.
- Identify how to add CheckBoxes to UserForms to enable users to make selections.
Introduction
Launching the Visual Basic Editor - 00:03:38
Creating a UserForm - 00:06:00
UserForm Overview - 00:07:28
Labels - 00:09:00
TextBoxes - 00:10:47
ComboBoxes - 00:12:40
ListBoxes - 00:15:37
Option Buttons - 00:19:39
Command Buttons - 00:21:01
Frames - 00:22:20
Create Plug and Print UserForm - 00:26:45
Adding a Select Sheet(s) to Print Frame - 00:31:48
Adding a ListBox to Store Worksheet Names - 00:33:20
Adding a Preview Before Printing Frame - 00:35:44
Adding Yes and no OptionButtons - 00:37:13
Adding Command Buttons - 00:41:19
Creating a UserForm_Initialize Event - 00:44:04
Programming Code for
UserForm_Initialize - 00:46:37
OK Button - 00:54:51
Cancel Button - 01:01:16
Select All Button - 01:02:18
Unselect All Button - 01:04:22
Creating a Macro to Launch the UserForm - 01:08:14
Accessing UserForm Launch Macro - 01:10:01
Finishing UserForm Launch Macro - 01:11:56
Create a Universal Print Macro Shortcut - 01:13:40
Plug and Print UserForm - 01:22:07
Additional Sheets Appear Automatically - 01:22:26
Sample Data Entry UserForm - 01:24:22
OK Button for Data Entry Form - 01:31:44
Cancel Button for Data Entry Form - 01:37:51
Moving Macros/UserForms to Other Files - 01:41:15
Removing UserForms/Module Sheets - 01:43:58
Print Frame - 00:31:48
Project Explorer - 00:03:38
UserForm - 00:06:00, 00:44:04
ComboBoxes - 00:12:40
Command Buttons - 00:21:01, 00:41:19
Frames - 00:22:20, 00:35:44
Labels - 00:09:00
ListBoxes - 00:15:37, 00:33:20
Option Buttons - 00:19:39, 00:37:13
TextBoxes - 00:10:47
Combo Box: A form of control that is both a text field and a drop-down list. The user can either type information in the combo box directly or make a choice from the list.
Command Button: Command buttons can be added to worksheets or userforms to trigger macros.
ListBox: A ListBox is a control that you can add to a worksheet or user form to display a list of items. ListBoxes can be set to allow the user to make a single choice or multiple choices.
Macro: One or more lines of programming code that automate tasks. The Macro Recorder allows users to automate tasks without seeing the underlying programming code.
Quick Access Toolbar: A customizable shortcut toolbar that appears above the ribbon in Office 2007 and later.
TextBox : Textboxes are used in worksheets or userforms to display information or to allow the user to input information.