
Use the file system object and folder class to import file information from any folder into Excel, iterating files to capture name, date created, size, and type.
Learn to merge data from multiple Excel workbooks by scanning a folder, opening matching files, copying sheet data, and compiling into a single workbook.
Learn how to copy and move folders and files in Excel VBA, handling destinations as strings, using the folder class, and resolving path syntax issues.
Learn to automate monthly data organization in Excel with VBA by creating month folders using the file system object, checking folder existence, and moving files into the correct directory.
Explore how to open multiple Excel files with the Open File dialog in VBA using a loop and index-based handling, avoiding fixed file counts and memory issues.
Learn to get subfolder names from any folder using VBA, with nested loops for folders and files and a dynamic file dialog to export results to Excel.
Explore how to create and manage text files in Excel VBA using the filesystem object class, including checking files exist, folders, and drives, and creating a text file named practice.
Learn how to open and read text files in Excel VBA, using the text stream to read line by line and monitor end-of-file via the immediate window.
Open and read a text file in Excel, then import its data line by line. Split each line by a delimiter like space or tab and write into worksheet columns.
Learn how to write data from one text file to another in Excel VBA, using open modes for write or append, handling new lines, and avoiding unintended overwrites.
Learn how to automatically import and display pictures from a folder into Excel cells using VBA, the File System Object, and a before double-click event to insert or remove images.
Learn to build an Excel VBA user form with combo box, text box, option buttons, and frames; arrange controls, use data validation, and link a submit button to a database.
Explore Excel VBA userform events, including form initialization and control changes, and learn naming conventions, private macros, and how to run the form from Excel.
Explore Excel VBA user form events such as change and after update, build a dynamic calculator, handle blanks and type mismatches, and control form closing with queryclose and unload logic.
Explore how to use list boxes in VBA forms, including initializing data, handling events, and enabling single or multi select with extended mode for dynamic item lists.
Learn to fetch selected items from a list box by looping through items, using list count and the selected property, and retrieving values with indexing for single and multi-select modes.
Build a vba user form that uses a combo box to select a folder and populate a listbox with Excel files from that folder, using scripting runtime and proper events.
Explore a hands-on excel vba project that ties together list boxes, checkboxes, option buttons, frames, and command buttons to build an interactive form with multi-select using shift and ctrl.
Finish the dashboard with a multi-column list box and a ticket-based advanced filter search. Initialize forms, double-click to pull details from the database, and manage data and statuses.
Master error handling in Excel VBA by using on error resume next and on error go to, exploring two error types with VLOOKUP examples and multi-sheet scenarios.
Pls change the path used in this code.
Discover how to use the VBA message box to display prompts, choose buttons (yes, no, cancel), and drive macro logic with safe exit on cancel.
Explain how to use an application input box to select a range, enforce range-type input, and loop through cells to bold those matching a given value, using range addresses.
Learn to use workbook and sheet level events in Excel VBA, including the workbook open event, change, and selection change, to create self-triggered macros for sheet activities.
Explore sheet activate and before delete events in Excel VBA, learn how to prompt users, copy sheets, and manage event flow with module-level variables.
Learn how to track changes in Excel using sheet change and selection change events, log the old and new values, username, and date to a log sheet.
Master Excel VBA techniques to track user activities on a spreadsheet, logging changes with worksheet change events, date, username, and target values.
In section1, We are Learning to deal with small or large data stored in excel workbooks or text files using a library called SCRIPTING which offers us amazing classes like FileSystemObject , Folder and Files and Textstream.
How to go inside a folder and pick the needed files and then do the things like compiling data from them or modifying the files or moving them or deleting them.
Learn how to use the file-dialogs so that user can choose any folder of his or her choice and work accordingly.
Not just folders or Excel files -we are also going to see what to do if we have to overwrite or append the data in text files. Yes, we can even control the text files using scripting library, Very useful especially when you are dealing with big data.
Skip the files while running loops which you do not want. Set the filters in the extensions using file dialogs. Learn all types of file dialogs like open dialog. save as dialog, folder dialog and also why and where we can use them.
Customization of file dialog buttons, titles to how to open multiple files with them to make more user friendly and robust program which can be run in any machine irrespective of the drives or folder paths they have.
Learn to manipulate text files using scripting library. We have everything discussed here from basic level to advance level when it comes to file and folder manipulations.
In section2, we have covered all form controls like labels, textboxes, combo, listbox, frame, option buttons, check boxes and many more.
From understanding the Userform control design and properties, you shall also see the magic of userform events which are very much required to create projects.
All of your doubts will be answered via email or forum in 24 hours.
in section3, you shall learn Error handlers like On error resume next and goto err.
You shall see what are the scenarios when we already know we can have errors - VBA Errors so if we want to ignore those errors and keep continuing running the vba code, how to do that and first of all, why in first place , I will like to ignore the errors.
We will then learn how to use and customize a message box and input box in vba with various examples.
In section4, we will learn how to work with events which we write inside workbook and sheet modules.
Why they are called self triggered macros and what are the conditions - Events names we can go and use it for different type of jobs.
Learn amazing Events like - Workbook open, Sheet activate, sheet before delete, sheet change event, selection change events.
When one event starts calling another event and you never planned for it, how to avoid this class using public variable
Few projects for you to give you more confidence in Events