├── 07-12-ASSIGNMENT-Problem.mp4 ├── LICENSE ├── LINKS.txt ├── README.md ├── S01 - files ├── LINKS.txt ├── NOTE.txt ├── Thumbs.db └── vba-course.zip ├── S02.zip ├── S03.zip ├── S04.zip ├── S05.zip ├── S06.zip ├── S08.zip └── S12.zip /07-12-ASSIGNMENT-Problem.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/07-12-ASSIGNMENT-Problem.mp4 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Packt 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /LINKS.txt: -------------------------------------------------------------------------------- 1 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Application(object) 2 | 3 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Application.Name 4 | 5 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Application.Path 6 | 7 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Application.Version 8 | 9 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Application.UserName 10 | 11 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Application.Quit 12 | 13 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Application.DisplayAlerts 14 | 15 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbooks 16 | 17 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbooks.Count 18 | 19 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Worksheets.Count 20 | 21 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbooks.Open 22 | 23 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbook.Path 24 | 25 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbooks.Close 26 | 27 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbooks.Add 28 | 29 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbook 30 | 31 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbook.Save 32 | 33 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbook.SaveAs 34 | 35 | https://docs.microsoft.com/en-us/office/vba/api/Excel.XlFileFormat 36 | 37 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbook.Activate(method) 38 | 39 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Workbook.Close 40 | 41 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Worksheet.Visible 42 | 43 | https://docs.microsoft.com/en-us/office/vba/api/Excel.XlSheetVisibility 44 | 45 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Worksheet 46 | 47 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Worksheet.Delete 48 | 49 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Worksheet.Copy 50 | 51 | https://docs.microsoft.com/en-us/office/vba/api/Excel.Worksheet.Move -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # Excel-VBA-Programming---The-Complete-Guide 5 | Code Repository for Excel VBA Programming - The Complete Guide, published by Packt 6 | -------------------------------------------------------------------------------- /S01 - files/LINKS.txt: -------------------------------------------------------------------------------- 1 | https://docs.microsoft.com/en-us/office/vba/Library-Reference/Concepts/getting-started-with-vba-in-office 2 | 3 | https://docs.microsoft.com/en-us/office/vba/Library-Reference/Concepts/what-s-new-for-vba-in-office-2016 4 | 5 | https://support.office.com/en-us/article/Show-the-Developer-tab-e1192344-5e56-4d45-931b-e5fd9bea2d45 6 | 7 | https://support.office.com/en-us/article/File-formats-that-are-supported-in-Excel-0943ff2c-6014-4e8d-aaea-b83d51d46247 8 | 9 | https://en.wikipedia.org/wiki/List_of_Microsoft_Office_filename_extensions 10 | 11 | https://docs.microsoft.com/en-us/office/vba/Library-Reference/Concepts/getting-started-with-vba-in-office#to-record-a-macro 12 | 13 | https://www.dummies.com/software/microsoft-office/excel/how-to-record-macros-in-relative-mode-and-absolute-mode-in-excel-2016/ 14 | 15 | https://docs.microsoft.com/en-us/office/vba/Language/Reference/User-Interface-Help/use-the-project-explorer 16 | 17 | https://docs.microsoft.com/en-us/office/vba/Language/Reference/User-Interface-Help/use-the-properties-window 18 | 19 | https://docs.microsoft.com/en-us/office/vba/Language/Reference/User-Interface-Help/use-the-immediate-window 20 | 21 | -------------------------------------------------------------------------------- /S01 - files/NOTE.txt: -------------------------------------------------------------------------------- 1 | Download Course Materials 2 | This lecture includes a .zip file with the completed course files. These represent the final versions of the Excel workbooks that were created during the filming of this course. 3 | 4 | Please note that there may be slight differences between the content of the workbooks and the content of the videos. These differences are negligible; you'll be able to understand the concepts if you proceed through the course in a linear fashion. 5 | 6 | The workbooks are organized by course section. The name of the workbook will usually be identical to the lesson name. Sometimes, content across multiple lessons will be packaged into a single workbook. 7 | 8 | It is strongly recommended that you use the workbooks strictly as a point of reference. The best strategy for your technical development is to: 9 | 10 | open Excel alongside the course videos 11 | create a new workbook (if needed) for each course video 12 | copy the code that I write out in the video 13 | execute and test the code in your Excel application 14 | experiment with the code to see what else it can do -------------------------------------------------------------------------------- /S01 - files/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S01 - files/Thumbs.db -------------------------------------------------------------------------------- /S01 - files/vba-course.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S01 - files/vba-course.zip -------------------------------------------------------------------------------- /S02.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S02.zip -------------------------------------------------------------------------------- /S03.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S03.zip -------------------------------------------------------------------------------- /S04.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S04.zip -------------------------------------------------------------------------------- /S05.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S05.zip -------------------------------------------------------------------------------- /S06.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S06.zip -------------------------------------------------------------------------------- /S08.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S08.zip -------------------------------------------------------------------------------- /S12.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Excel-VBA-Programming---The-Complete-Guide/4d0d1742bd3804905073cb3a748e9f25b29fffca/S12.zip --------------------------------------------------------------------------------