Instructional Video9:53
Institute of Human Anatomy

Understanding Tracheostomy: Anatomy and Procedure

Higher Ed
In this video, the anatomy of the respiratory system is explained using cadavers as a visual aid. The procedure of tracheostomy is discussed, including the reasons why it may be required, the landmarks that need to be identified, and the...
Instructional Video7:26
Rachel's English

English Vocabulary Challenge Day 18

6th - Higher Ed
ENGLISH VOCABULARY WORDS. Do you want to learn English? Are you looking for an English lesson on vocabulary and pronunciation? Learning English vocabulary and pronunciation are my specialties! In this video, I’ll teach you the precise...
Instructional Video1:47
Curated Video

Excel VBA Programming The Complete Guide - The Workbooks. Method

Higher Ed
In this lesson, we use the Workbooks. method to close every open workbook in Excel. We also configure the procedure to disable alerts temporarily to avoid halting execution.
r/>
This clip is from the chapter "Object Deep Dive"...
Instructional Video7:38
Curated Video

Excel VBA Programming The Complete Guide - Syntax Tips

Higher Ed
In this lesson, we'll explore some tips for writing cleaner and more elegant VBA code.
r/>
This clip is from the chapter "Variables and Data Types" of the series "Excel VBA Programming–The Complete Guide".In this section, we...
Instructional Video5:19
Curated Video

Excel VBA Programming The Complete Guide - Comments

Higher Ed
In this lesson, we'll explore the benefits of comments to the developer and practice writing them in the context of a procedure.
r/>
This clip is from the chapter "The Visual Basic Editor" of the series "Excel VBA...
Instructional Video8:52
Curated Video

Excel VBA Programming The Complete Guide - Create and Delete a Procedure

Higher Ed
A procedure is a grouped set of instructions / code that accomplishes some kind of goal. We'll also talk about some of the common syntactical errors made when writing out procedures. In this lesson, we'll dive into the syntax to...
Instructional Video10:50
Curated Video

Excel VBA Programming The Complete Guide - Deleting Rows

Higher Ed
Deleting rows from a spreadsheet can be a risky operation --- if moving downwards in direction, there's a risk that some rows will NOT be deleted. In this lesson, we explore iteration in reverse (from a larger number to a smaller one)...
Instructional Video7:11
Curated Video

Excel VBA Programming The Complete Guide - The With-End With Construct

Higher Ed
The With - End With construct is a shorthand syntax that allows for multiple properties to be overwritten on an object. In this lesson, we practice modifying the Name, Size, Bold and Italic properties on the Font object.
r/>
...
Instructional Video2:09
Curated Video

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

Higher Ed
In certain cases, VBA allows us to traverse the Excel object model in reverse --- from the bottom up. One such example is the Range.Worksheet property, which returns a Worksheet object that encloses a Range. In this lesson, we practice...
Instructional Video8:25
Curated Video

Excel VBA Programming The Complete Guide - Stepping Through Code

Higher Ed
The F8 key allows us to step through the lines of a procedure step by step. In this lesson, we see how this functionality grants tremendous power when debugging a complex piece of code.
r/>
This clip is from the chapter...
Instructional Video4:25
Curated Video

Excel VBA Programming The Complete Guide - The Option Base 1 Syntax and Write Array Values to Cells

Higher Ed
If zero-based indexing is confusing, the Option Base 1 keywords at the top of a module force an array to start at an index position of 1. In this lesson, we enable this setting and see its results in a newly declared array.
r/>
...
Instructional Video8:44
Curated Video

Excel VBA Programming The Complete Guide - The InputBox Function

Higher Ed
In this lesson, we use the InputBox function to collect a new worksheet title from the user. The InputBox is a basic dialog box with a single text entry field, a prompt, a title, and OK / Cancel buttons.
r/>
This clip is from...
Instructional Video12:47
Curated Video

Excel VBA Programming The Complete Guide - Exit For and Review of Exit Sub

Higher Ed
The Exit For keywords prematurely terminate a For loop. The Exit Sub keywords prematurely terminate a procedure. In this lesson, we practice implementing these concepts.
r/>
This clip is from the chapter "Iteration" of the...
Instructional Video6:42
EL Consulting

Handling a Formal Grievance in the Workplace: A Fair and Calm Approach

Higher Ed
This is a video of showing a fair and calm grievance procedure between an employee and their manager. The mediator listens to both sides, asks for evidence, and aims to find a solution that addresses the problem while ensuring the...
Instructional Video6:26
Curated Video

Excel VBA Programming The Complete Guide - The Application.DisplayAlerts Property

Higher Ed
The Application.DisplayAlerts property is used to enable or disable user alerts in Excel. An alert is a dialog box that warns the user of an impending operation. It's a helpful feature but can be distracting when the user is executing...
Instructional Video3:35
Curated Video

Excel VBA Programming The Complete Guide - The Worksheet.Copy Method

Higher Ed
The Worksheet.Copy method copies the contents of a worksheet to a new worksheet. When invoked with no arguments, it will create the copy in a brand new workbook. With either a Before or After argument, the copy will be placed in the...
Instructional Video8:45
Curated Video

Excel VBA Programming The Complete Guide - The Immediate Window and Debug.Print Method

Higher Ed
The Immediate Window is a console or playground within the Visual Basic Editor that allows the developer to test out snippets of VBA code. The IW can be used to get or set property values, invoke object methods and more. In this...
Instructional Video2:48
Curated Video

Excel VBA Programming The Complete Guide - The Worksheet_Activate Event

Higher Ed
The Worksheet_Activate event is triggered when the user navigates to a different worksheet. It can be used to provide the user with instructions or warnings. In this lesson, we write a quick procedure to MsgBox out the activated...
Instructional Video9:34
Curated Video

Excel VBA Programming The Complete Guide - Dynamic Arrays

Higher Ed
A dynamic array can be resized repeatedly throughout a procedure to hold a different number of elements. This can be helpful when we cannot predict an array size in advance. In this lesson, we use a dynamic array to contain a list of...
Instructional Video7:50
Curated Video

Excel VBA Programming The Complete Guide - The For Each-Next Construct

Higher Ed
The For Each construct iterates over every single object in a collection. In this lesson, we practice iterating over the Workbooks and Worksheets collections.
r/>
This clip is from the chapter "Iteration" of the series "Excel...
Instructional Video3:54
Curated Video

Excel VBA Programming The Complete Guide - Procedures with Boolean Arguments + The Workbook_BeforePrint Event

Higher Ed
Some event procedures feature a Cancel Boolean argument that can cancel a specific operation by being set to True in the body of the procedure. In this lesson, we try this out with the BeforePrint event procedure.
r/>
This clip...
Instructional Video2:51
Curated Video

Excel VBA Programming The Complete Guide - The Workbook_Open Event

Higher Ed
The Workbook_Open event is triggered when a workbook is opened -- it can be an effective way to welcome a user or run a procedure. In this lesson, we utilize this feature in a new event procedure.
r/>
This clip is from the...
Instructional Video4:38
Curated Video

Excel VBA Programming The Complete Guide - Date and Time Functions

Higher Ed
In this lesson, we explore the Date, Time and Now functions for retrieving the current date and/or time as well as the DateSerial function for generating a specific date in time.
r/>
This clip is from the chapter "Functions" of...
Instructional Video7:09
Curated Video

Excel VBA Programming The Complete Guide - The Step Keyword

Higher Ed
The Step keyword can iterate with a different increment or decrement after each cycle of the loop. In this lesson, we experiment with a syntax and write a procedure that colors every second row yellow.
r/>
This clip is from the...