Add and Remove Items from Collection

Saturday, April 24, 2021

The below workbook and code shows you how to add and remove items from a VBA collection. This is basically the same as the end of the video…

Read More

Fill Userform with Values VBA

Saturday, April 10, 2021

The program below shows you how to add values to a listbox in a userform with Excel VBA. Code: Userform lesson: You can watch my advanced mouse control…

Read More

Excel Cell and Font Color VBA

Saturday, April 10, 2021

The below workbook and code shows you the color index for Excel fonts and cell colors. It also shows you how to do an IF statement based on…

Read More

Flip Column Upside Down Excel VBA

Saturday, April 10, 2021

The workbook and code below will flip a single column upside down based on your selection. You can only select one column at a time. It's attached to…

Read More

Open All Excel Workbooks in Many Folders One by One

Friday, April 9, 2021

The workbook and code below opens all excel workbooks in many folders one-by-one to pull data from them one-by-one so that you can auto-pull hundreds of files without…

Read More

Count Folders and Rename Folders VBA Excel

Thursday, April 8, 2021

The code and workbook below counts the number of folders in a folder. It then renames the folders in that folder incrementally based on the values in cells…

Read More

Save All Outlook Attachments Selected Emails

Wednesday, April 7, 2021

This article shows you how to automatically save all attachments for the selected emails in Outlook with VBA into the designated folder. Code: Here's an alternative version (above…

Read More

Zip Folder VBA

Friday, April 2, 2021

The below zip folder VBA program zips the files in a folder that you select into a zipfolder in that same folder that you select. Just enable Microsoft…

Read More

Copy Folders and Subfolders Excel VBA

Friday, March 26, 2021

Xcopy allows you to copy all folders and subfolders from a source folder to a target folder on your PC. The documentation for this code can be found…

Read More

Keyboard and Mouse VBA Multiple Excel Sendkeys and Clicks

Thursday, March 18, 2021

You can download the workbook below. I'll explain the code more eventually. column AH pulls the data selected into excel Explanation of the Above Program: The above program…

Read More