Instructional Video3:38
Curated Video

Excel VBA Programming The Complete Guide - Activate a UserForm from Procedure

Higher Ed
The more we can abstract away the complexity of VBA from the regular Excel user, the better. In this lesson, we set up a graphic on our Excel interface to trigger the UserForm to appear. This clip is from the chapter "User Forms" of the...
Instructional Video8:17
Curated Video

Excel VBA Programming The Complete Guide - Workbook Events and The Sh Argument

Higher Ed
The Workbook event has its own set of event procedures. One common trend in their signatures is the presence of a Sh argument, which represents the sheet on which the event has been triggered. In this lesson, we construct a dynamic macro...
Instructional Video3:28
Curated Video

Excel VBA Programming The Complete Guide - Review of Application.EnableEvents

Higher Ed
The Application.EnableEvents property is used to enable and disable Excel events (automatic actions that are triggered by user interactions). In this lesson, we discuss the benefits of temporarily disabling this feature in an event...
Instructional Video6:28
Curated Video

Excel VBA Programming The Complete Guide - Intro to Arrays

Higher Ed
In this section, we'll explore the array, the most popular data structure in computer science. An array is a sequenced collection of elements, each of which is assigned an index position. In this lesson, we create a fixed-size array of...
Instructional Video9:02
Curated Video

Excel VBA Programming The Complete Guide - The Visual Basic Editor

Higher Ed
In this lesson, we explore the components of the Visual Basic Editor, including the Project Explorer, which lists all open workbooks and worksheets as well as all modules (containers for code). Properties Window, which can be used to get...
Instructional Video6:00
Curated Video

Excel VBA Programming The Complete Guide - StatusBar

Higher Ed
The StatusBar is an information bar located on the bottom left of the Excel interface. In this lesson, we run a long procedure and use the StatusBar to provide updates to the user on its completion status. This clip is from the chapter...
Instructional Video5:31
Curated Video

Learning Microsoft Power BI - Visual Cues and Chart Types

Higher Ed
We will learn visual cues, chart type selection, and how to tell a story with data. • Understand how visual cues influence how we perceive data • Learn to pick the right visualization based on visual cues • Learn about the Visuals...
Instructional Video5:04
Curated Video

Learning Microsoft Power BI - Understanding the Data View in Power BI

Higher Ed
In this video, we will learn about the design and function of the data view. • Learn how to use the fields list • Learn how to identify column and table information • Learn how to rename fields in the fields list This clip is from the...
Instructional Video8:35
Curated Video

Learning Microsoft Power BI - Importing Data and Power Query Fundamentals

Higher Ed
In this video, we will learn about importing data and Power Query fundamentals. • Understand what data you will need to import as per your report requirements • Review where the data you need exists • Import data into a new Power BI...
Instructional Video2:48
Curated Video

The Complete Excel Guide: Beginners to Advanced - Overview of Formulas

Higher Ed
In this video, let's take a quick overview of formulas. This clip is from the chapter "Excel 2019 Beginners: Formulas and Functions" of the series "The Complete Excel Guide: Beginners to Advanced".In this section, we'll explore formulas...
Instructional Video3:44
Curated Video

Utilizing Sparklines in Microsoft Excel

Pre-K - Higher Ed
This video demonstrates how to use spark lines in Microsoft Excel to visually represent data trends efficiently. Spark lines are miniature graphs embedded within cells, providing a quick and clear overview of patterns in student scores...
Instructional Video3:04
Curated Video

Repeat Top Row Headings When Printing Excel Spreadsheet

Pre-K - Higher Ed
In this Excel tutorial, Justin demonstrates how to lock the top row of a spreadsheet for printing, ensuring that important headings remain visible on every printed page. By utilizing the "Print Titles" feature in the page layout tab,...
Instructional Video5:15
Curated Video

Alteryx for Beginners - Imputation Tool

Higher Ed
This video demonstrates how to use the Imputation tool in Alteryx. This clip is from the chapter "Preparation Tab" of the series "Alteryx for Beginners".This section focuses on the Preparation tab.
Instructional Video2:49
Curated Video

Alteryx for Beginners - Sort

Higher Ed
This video demonstrates how to sort data in Alteryx. This clip is from the chapter "Preparation Tab" of the series "Alteryx for Beginners".This section focuses on the Preparation tab.
Instructional Video10:09
Packt

What is Apache POI API and Download Instructions?

Higher Ed
This video explains Apache POI API and demonstrates how to download it. This clip is from the chapter "Framework Part 6: Data Driven Testing Utilities" of the series "Selenium WebDriver with Java - Basics to Advanced and Frameworks".This...
Instructional Video2:17
Let's Tute

Microsoft Excel Tutorial: Working with Sum Function

9th - Higher Ed
In this Microsoft Excel tutorial, we learn how to use the sum function to add numbers together. We also explore how to use cell numbers or ranges as arguments in the sum function, and how Excel ignores text when adding numbers....
Instructional Video4:24
Packt

Alteryx for Beginners - Case Study - 6

Higher Ed
This video presents the sixth case study on joining tables with multiple criteria. This clip is from the chapter "Case Studies" of the series "Alteryx for Beginners".null
Instructional Video5:52
Curated Video

Alteryx for Beginners - Join Multiple Tool

Higher Ed
This video demonstrates how to use the Join Multiple tool in Alteryx. This clip is from the chapter "Join Tab" of the series "Alteryx for Beginners".This section explores the Join tab.
Instructional Video6:20
Curated Video

Alteryx for Beginners - Join Tool

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

Excel VBA Programming The Complete Guide - The Range.Sort Method

Higher Ed
Sorting is one of the most popular operations in Excel. In this lesson, we utilize the Range.Sort method to sort both one and two columns at a time (in ascending or descending order) and discuss how we can ignore the values in the header...
Instructional Video5:54
Curated Video

Excel VBA Programming The Complete Guide - The Range.Delete Method

Higher Ed
Most deletion operations will involve removing entire rows or columns at a time. In this lesson, we discuss how to make that happen in VBA as well as what happens when we delete a single cell instead. This clip is from the chapter "Range...
Instructional Video9:53
Curated Video

Excel VBA Programming The Complete Guide - R1C1 Notation, Part I

Higher Ed
R1C1 notation is a different way of thinking about cells in Excel. Instead of using a letter for the column and a row for the number, R1C1 relies on numbers for both. In this lesson, we enable R1C1 notation in our Excel interface and...
Instructional Video5:12
Curated Video

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

Higher Ed
The Worksheet.Visible property is used to hide and unhide a worksheet. It accepts either a Boolean argument (True or False) or an XlSheetVisibility enumeration. One cool VBA feature is the ability to use the xlSheetVeryHidden option to...
Instructional Video5:42
Curated Video

Excel VBA Programming The Complete Guide - The Variant Data Type

Higher Ed
In this lesson, we use the TypeName method from the VBA object to track the data type of a Variant variable as we assign different values to it. This clip is from the chapter "Variables and Data Types" of the series "Excel VBA...