We are aware of issues with the site and purchases not going through. This is due to a server upgrade and we are working with the hosting company to have it fixed asap. Sorry for the inconvenience!
Don
Latest YouTube Tutorial
This Hidden Formatting Trick Saves Me Hours in Excel
We've created a streamlined course platform for easier browsing and purchasing.
Access all Excel training courses with a simpler checkout process and better course management.
Download course videos for offline viewing
Pay with Credit Card, PayPal, Klarna, and more
Current course owners get free access - contact us!
Learn how to make your own Macros in Excel, no experience required! This is a programming course that will take you from Beginner to Expert in VBA and save you hours of time working in Excel!
How to send Emails from Excel using VBA and Macros. This course starts from the Basics and builds up to more advanced examples with attaching workbooks, worksheets, PDF's, automatically sending emails, including a signature, error handling, increasing speed, and more.
How to make a fully featured professional form in Excel that is unbreakable. This includes how to use the form to store, view, edit, and delete data from a data storage worksheet.
Help me create the best free Excel training experience on the web!
Today, I launch the Requested Tutorials feature that you can see below. Using
this feature, I want to work with you to create the content that you want.
We start-off with a brand new course for UserForms in Excel. The goal is to create an expectional
training guide for building UserForms in Excel so that you never have to pay to learn this
material.
View the UserForms course outline in this blog
post and feel free to leave your feedback there.
I need your help to create the content, and I look forward to working with you in a collaborative
manner in order to create an extensive, open, and free learning experience for everyone!
Sign-in to your account today and submit a tutorial! :)
(Blog
post about our future and how we want to work with you to create the best possible
learning experience.)
Don
Site Update
We are aware of issues with the site and purchases not going through. This is due to a server upgrade and we are working with the hosting company to have it fixed asap. Sorry for the inconvenience!
You can change the size of the units on a chart axis, their interval, where they start, where they finish, and more. Sections: Change Vertical Axis Units Change the Horizontal Axis Notes Change Vertical Axis Units Select your chart and then go to the Layout tab and click Axes > Primary Vertical Axes and then More Primary Vertical Axis Options.. ...
How to make the Y axis start at 0 in charts in Excel. This is a simple formatting issue. Select the Chart and go to the Layout tab (that is visible only when you select a chart). Click the Axes button and go to Primary Vertical Axis and then More Primary Vertical Axis Options... You will now be in the Format Axis window. Look to the top and next to ...
How to make a macro stop or pause for a specified amount of time. This allows you to slow down the execution of a macro. Method 1 - Simple but Not Versatile Add this line of code anywhere in your macro where you want it to pause. Application.Wait(Now + TimeValue("00:00:01")) This will pause the macro for 1 second. The first set of zeros is hours; t ...
How to stop a macro from running after it has started. This method uses the keyboard and has nothing to do with the programming of the macro. If the Macro is simply in a continuous loop or is running for too long you can use one of these keyboard shortcuts to kill it: Esc hit the Escape key. Ctrl + Break hit Ctrl key and then the break key, which ...
How to use VBA/Macros to iterate through each cell in a range, either a row, a column, or a combination of both. This is for when you need to look into each cell or do something with each cell in a range; if you just need to search for a piece of data within a range, use the Find method (link coming soon). Sections: How to Loop Through a Range of C ...
How to use complex structured references, table formulas, in Excel. If you don't already understand how structured references work or what they do, please read our tutorial on that: using formulas with tables in Excel. Note: the examples below will show you how to make the references but won't necessarily show you useful real world examples. This ...
Easy way to reference data tables and make formulas within a data table. This allows you to create formulas that apply to the entire table, copy easily, and are more robust than traditional formulas; these are called structured references. First, make sure your data is formatted as a table; if it's not, read this tutorial on how to create and mana ...
Convert a table back into a regular set of cells. This removes any automated table features and I'll show you how to quickly remove the visual formatting as well. Oddly enough, this isn't as straightforward as it seems like it should be. Steps to Remove a Table Format Select a cell anywhere in the table. Go to the Design tab that should appear w ...
You can enter data into a table in Excel using a form; here I'll show you how to do that. This is a great feature that makes it more difficult for someone to mess-up entering data into a table. However, it is not easily accessible. Steps to use a Form to Enter Data into a Table This feature is actually hidden in Excel, so first we need to access ...
How to create dynamic charts that update automatically when new data is added to Excel. This works with adding new rows and new columns of data to the table. This method uses the table feature in Excel and is very easy to do. Select the data that you want to chart or just select a cell within that data. Go to the Insert tab and click Table. Yo ...