Instructional Video8:17
Curated Video

Excel VBA Programming The Complete Guide - Ways to Invoke A Procedure

Higher Ed
In this lesson, we explore a myriad of ways to execute a public procedure from both the code editor and the Excel interface, including: • The green execute button in the VBE • The F5 keyboard shortcut in the VBE • Clickable buttons • The...
Instructional Video13:35
Curated Video

Excel VBA Programming The Complete Guide - The MsgBox Method

Higher Ed
The MsgBox is a simple dialog box that prompts a user action or confirmation. In this lesson, we'll explore the syntax for the method as well as begin our discussion of inputs, parameters, and arguments. A parameter is the name given to...
Instructional Video6:57
Curated Video

Excel VBA Programming The Complete Guide - Introduction to Events

Higher Ed
An event is a regular Excel action --- opening a worksheet, entering a cell value -- that can automatically trigger a VBA procedure. In this lesson, we compare event procedures to regular procedures and setup our VBE environment for...
Instructional Video7:19
Curated Video

Excel VBA Programming The Complete Guide - Intro to Error Handling

Higher Ed
Programmers of all experience levels make mistakes --- it's part of the job. Error handling is the ability to avoid errors in our code by catching them before they happen. In this lesson, we discuss some common errors we can run into in...
Instructional Video9:29
Curated Video

Excel VBA Programming The Complete Guide - The Application.InputBox Method

Higher Ed
The Application.InputBox method offers some additional flexibility when collecting user input. In this lesson, we provide a custom Type argument to collect a Range input from the user. We then color the range with an assorted collection...
Instructional Video4:49
Curated Video

Excel VBA Programming The Complete Guide - Alternate Syntax for Fixed-Size Arrays

Higher Ed
The LowerBound To UpperBound syntax can be used when declaring an array to modify the starting and ending index position. In this lesson, we declare an array of 6 whole numbers. This clip is from the chapter "Arrays" of the series "Excel...
Instructional Video6:01
Curated Video

The Complete Excel Guide: Beginners to Advanced - Creating an Outline

Higher Ed
The aim of this video is to explore how to create an outline. This clip is from the chapter "Excel 2019 Beginners: Outlining and Subtotaling" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, we'll explore...
Instructional Video6:08
Curated Video

The Complete Excel Guide: Beginners to Advanced - Format as Table

Higher Ed
The aim of this video is to explore how to format as table. This clip is from the chapter "Excel 2019 Beginners: Formatting Worksheets" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, you'll learn how to...
Instructional Video4:41
Curated Video

The Complete Excel Guide: Beginners to Advanced - Surface Charts

Higher Ed
The aim of this video is to explore surface charts. This clip is from the chapter "Excel 2019 Advanced: Graphs and Charts" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, we'll explore graphs and charts.
Instructional Video2:49
Curated Video

The Complete Excel Guide: Beginners to Advanced - Text to Columns

Higher Ed
The aim of this video is to explore how to convert text to columns. This clip is from the chapter "Excel 2019 Beginners: Additional Excel Features" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, we'll...
Instructional Video7:28
Curated Video

Correctly

Pre-K - Higher Ed
In this video, the speaker addresses a common issue where dates in Excel are not sorting correctly by year. By demonstrating a step-by-step solution, viewers learn how to ensure Excel recognizes the dates as dates, thus enabling proper...
Instructional Video5:45
Curated Video

Calculate the Difference Between Two Dates in Excel

Pre-K - Higher Ed
This video tutorial demonstrates how to calculate someone's age from their date of birth in Microsoft Excel using the Date DIF formula and the NOW function. By inputting the individual's date of birth and the current date, the formula...
Instructional Video8:16
Curated Video

Alteryx for Beginners - Case Study - 4

Higher Ed
This video presents the fourth case study on finding working days from the calendar. This clip is from the chapter "Case Studies" of the series "Alteryx for Beginners".null
Instructional Video3:22
Curated Video

Alteryx for Beginners - Render Tool

Higher Ed
This video explains how to use the Render tool in Alteryx. This clip is from the chapter "Reporting Tab" of the series "Alteryx for Beginners".This section explores the Reporting tab.
Instructional Video5:52
Curated Video

Alteryx for Beginners - Converting Text to Columns

Higher Ed
This video explains how to convert text to columns. This clip is from the chapter "Parse Tab" of the series "Alteryx for Beginners".This section explores the Parse tab.
Instructional Video3:21
Curated Video

Alteryx for Beginners - Directory Tool - Specific Files

Higher Ed
This video demonstrates how to check for specific files using the Directory tool in Alteryx. This clip is from the chapter "In/Out Tab" of the series "Alteryx for Beginners".This section provides an introduction to the In/Out tab in...
Instructional Video4:57
Curated Video

Alteryx for Beginners - Appending All Comma Separated Value (CSV) files

Higher Ed
This video demonstrates how to append all CSV files. This clip is from the chapter "In/Out Tab" of the series "Alteryx for Beginners".This section provides an introduction to the In/Out tab in Alteryx.
Instructional Video3:10
Let's Tute

Hiding and Unhiding Excel Rows and Columns in Excel

9th - Higher Ed
This tutorial teaches different methods to hide and unhide Excel rows and columns, including using the mouse, shortcut keys, and the tab menu. The instructor emphasizes the importance of practice to remember these techniques.
Instructional Video5:56
Let's Tute

Excel Tutorial: Inserting and Deleting Rows and Columns in Excel

9th - Higher Ed
This tutorial teaches various ways to insert and delete rows and columns in Microsoft Excel, including using mouse shortcuts, keyboard shortcuts, and adding shortcuts to the quick access toolbar. The tutorial emphasizes the importance of...
Instructional Video5:00
Curated Video

Excel VBA Programming The Complete Guide - The Range.CurrentRegion Property

Higher Ed
The Range.CurrentRegion property looks for the boundaries surrounding the range passed in as the argument. It returns a new Range representing the complete region surrounding the cell. In this lesson, we practice using the CurrentRegion...
Instructional Video2:07
Curated Video

Excel VBA Programming The Complete Guide - The Workbooks.Count and Worksheets.Count Properties

Higher Ed
The Workbooks.Count property returns the count of open workbooks. The Worksheets.Count property returns the count of worksheets in the selected workbook. In this lesson, we play around with these properties in the Immediate Window. This...
Instructional Video6:49
Curated Video

Excel VBA Programming The Complete Guide - Constants

Higher Ed
In this lesson, we explore constants, an alternative to variables. A constant's value cannot change over the course of a macro's execution, making it optimal for static values. This clip is from the chapter "Procedures" of the series...
Instructional Video4:15
Curated Video

Excel VBA Programming The Complete Guide - Multiple Variable Declarations

Higher Ed
VBA allows multiple variables to be declared on a single line. The user has to be careful, however. If the wrong syntax is used, some variables can be assigned an automatic Variant data type. Variant is a chameleon data type that is...
Instructional Video6:23
Curated Video

Excel VBA Programming The Complete Guide - The Date Data Type

Higher Ed
In this lesson, we practice declaring several dates and times in our procedure and outputting them to the spreadsheet. This clip is from the chapter "Variables and Data Types" of the series "Excel VBA Programming–The Complete Guide".In...