Welcome to part one of the Ultimate VBA Tutorial for beginners.
If you are brand new to VBA, then make sure that you have read the post How To Create a Macro From Scratch in Excel so that your environment is set up correctly to run macros.
In this Excel VBA tutorial you will learn how to create real-world macros. The focus is on learning by doing. This tutorial has coding examples and activities to help you on your way. You will find a quiz at the end of this VBA tutorial. You can use this to test your knowledge and see how much you have learned.
In part one of this VBA tutorial we will concentrate on the basics of creating Excel macros. See the next sections for the learning outcomes and for tips on getting started with VBA.
“The noblest pleasure is the joy of understanding.” – Leonardo da Vinci
Contents
- 1 Learning Outcomes for this VBA Tutorial
- 2 The Six Killer Tips For This VBA Tutorial
- 3 Basic Terms Used in this VBA Tutorial
- 4 Tip for the VBA Tutorial Activities
- 5 Creating a Module
- 6
- 7 How to Use Subs
- 8 Writing values to cells
- 9 Cells in Different Sheets
- 10 The Code Name of the Worksheet
- 11 The With keyword
- 12 Copying values between multiple cells
- 13 How to Use Variables
- 14 VBA Tutorial Assignment
- 15 VBA Tutorial One Quiz
- 16 Conclusion of the VBA Tutorial Part One
- 17 What’s Next?
Learning Outcomes for this VBA Tutorial
When you finish this VBA tutorial you will be able to:
- Create a module
- Create a sub
- Understand the difference between a module and sub
- Run the code in a sub
- Write a value to a cell
- Copy the value from one cell to another
- Copy values from one range of cells to another
- Copy values between difference worksheets
- Test your output using the Immediate Window
- Write code faster using the With Statement
- Create and use variables
- Copy from a cell to a variable and vice versa
Before we get started, let’s look at some simple tips that will help you on your journey.
The Six Killer Tips For This VBA Tutorial
- Practice, Practice, Practice – Don’t try to learn by reading. Try the examples and activities.
- Type the code examples instead of copying and pasting – this will help you understand the code better.
- Have a clearly defined target for learning VBA. One you will know when you reach.
- Don’t be put off by errors. They help you write proper code.
- Start by creating simple macros for your work. Then create more complex ones as you get better.
- Don’t be afraid to work through each tutorial more than once.The more times you do it the more deeply embedded the knowledge will become.
Basic Terms Used in this VBA Tutorial
Excel Macros: A macro is a group of programming instructions we use to create automated tasks.
VBA: VBA is the programming language we use to create macros. It is short for Visual Basic for Applications.
Line of code: This a VBA instruction. Generally speaking, they perform one task.
Sub: A sub is made up of one or more lines of code. When we “Run” the sub, VBA goes through all the lines of code and carries out the appropriate actions. A macro and a sub are essentially the same thing.
Module: A module is simply a container for our subs. A module contains subs which in turn contain lines of code. There is no limit(within reason) to the number of modules in a workbook or the number of subs in a module.
VBA Editor: This is where we write our code. Pressing Alt + F11 switches between Excel and the Visual Basic Editor. If the Visual Basic editor is not currently open then pressing Alt + F11 will automatically open it.
The screenshot below shows the main parts of the Visual Basic Editor:

The Visual Basic Editor
Tip for the VBA Tutorial Activities
When you are working on the activities in this VBA Tutorial it is a good idea to close all other Excel workbooks.
Creating a Module
In Excel, we use the VBA language to create macros. VBA stands for Visual Basic for Applications.
When we use the term Excel Macros we are referring to VBA. The term macro is essentially another name for a sub. Any time you see the terms Excel Macros or VBA just remember they are referring to the same thing.
In VBA we create lines of instructions for VBA to process. We place the lines of code in a sub. These subs are stored in modules.
We can place our subs in the module of the worksheet. However, we generally only place code for worksheet events here.
In VBA, we create new modules to hold most of our subs. So for our first activity let’s go ahead and create a new module.
Activity 1
- Open a new blank workbook in Excel.
- Open the Visual Basic Editor(Alt + F11).
- Go to the Project – VBAProject window on the left(Ctrl + R if it is not visible).
- Right-click on the workbook and click Insert and then Module.
- Click on Module1 in the Project – VBAProject window.
- In the Properties window in the bottom left(F4 if not visible), change the module name from module1 to MyFirstModule.
End of Activity 1
The module is where you place your code. It is simply a container for code and you don’t use it for anything else.
You can think of a module like a section in a bookshop. It’s sole purpose is to store books and having similar books in a particular section makes the overall shop more organised.
The main window(or code window) is where the code is written. To view the code for any module including the worksheets you can double-click on the item in the Project – VBAProject window.
Let’s do this now so you can become familiar with the code window.
Activity 2
- Open a new workbook and create a new module like you did in the last activity.
- Double-click on the new module in the Project – VBAProject window.
- The code window for this module will open. You will see the name in the title bar of Visual Basic.
End of Activity 2
You can have as many modules as you like in a workbook and as many subs as you like within a module. It’s up to you how you want to name the modules and how you organize your subs within your modules.
In the next part of this VBA Tutorial, we are going to look at using subs.
How to Use Subs
A line of code is the instruction(s) we give to VBA. We group the lines of code into a sub. We place these subs in a module.
We create a sub so that VBA will process the instructions we give it. To do this we get VBA to Run the sub. When we select Run Sub from the menu, VBA will go through the lines of code in the sub and process them one at a time in the order they have been placed.
Let’s go ahead and create a sub. Then afterward, we will have a look at the lines of code and what they do.
Activity 3
- Take the module you created in the last activity or create a new one.
- Select the module by double-clicking on it in the Project – VBAProject window. Make sure the name is visible in the title bar.
- Enter the following line in the code window and press enter.
Sub WriteValue
- VBA will automatically add the second line End Sub. We place our code between these two lines.
- Between these two lines enter the line
Sheet1.Range("A1") = 5
You have created a sub! Let’s take it for a test drive.
- Click in the sub to ensure the cursor is placed there. Select Run->Run Sub/Userform from the menu(or press F5).
Note: If you don’t place the cursor in the sub, VBA will display a list of available subs to run. - Open Excel(Alt + F11). You will see the value 5 in the cell A1.
- Add each of the following lines to your sub, run the sub and check the results.
Sheet1.Range("B1") = "Some text" Sheet1.Range("C3:E5") = 5.55 Sheet1.Range("F1") = Now
You should see “Some text” in cells B1, 5.55 in the cells C3 to E5 and the current time and date in the cell F1.
End of Activity 3
Writing values to cells
Let’s look at the line of code we used in the previous section of this VBA Tutorial
Sheet1.Range("A1") = 5
We can also write this line like this
Sheet1.Range("A1").Value = 5
However in most cases we don’t need to use Value as this is the default property.
We use lines of code like these to assign(.i.e. copy) values between cells and variables.
VBA evaluates the right of the equals sign and places the result in the variable/cell/range that is to the left of the equals.
The line is saying “the left cell\variable\range will now be equal to the result of the item on the right”.
Let’s look the part of the code to the left of the equals sign
Sheet1.Range("A1") = 5
In this code , Sheet1 refers to the code name of the worksheet. We can only use the code name to reference worksheets in the workbook containing the code. We will look at this in the section The code name of the worksheet.
When we have the reference to a worksheet we can use the Range property of the worksheet to write to a range of one or more cells.
Using a line like this we can copy a value from one cell to another.
Here are some more examples:
' https://excelmacromastery.com/ Sub CopyValues() ' copies the value from C2 to A1 Sheet1.Range("A1") = Sheet1.Range("C2") ' copies the value from D6 to A2 Sheet1.Range("A2") = Sheet1.Range("D6") ' copies the value from B1 on sheet2 to A3 on sheet1 Sheet1.Range("A3") = Sheet2.Range("B1") ' writes result of D1 + D2 to A4 Sheet1.Range("A4") = Sheet2.Range("D1") + Sheet2.Range("D2") End Sub
Now it’s your turn to try some examples. Copying between cells is a fundamental part of Excel VBA, so understanding this will really help you on your path to VBA mastery.
Activity 4
-
-
- Create a new Excel workbook.
- Manually add values to the cells in sheet1 as follows: 20 to C1 and 80 to C2.
- Create a new sub called Act4.
- Write code to place the value from C1 in cell A1.
- Write code to place the result of C2 + 50 in cell A2.
- Write code to multiply the values in cells C1 and C2. Place the results in cell A3.
- Run the code. Cells should have the values A1 20, A2 130 and A3 1600
-
End of Activity 4
Cells in Different Sheets
We can easily copy between cells on different worksheets. It is very similar to how we copy cells on the same worksheet. The only difference is the worksheet names which we use in our code.
In the next VBA Tutorial activity, we are going to write between cells on different worksheets.
Activity 5
-
-
- Add a new worksheet to the workbook from the last activity. You should now have two worksheets called which are called Sheet1 and Sheet2.
- Create a new sub called Act5.
- Add code to copy the value from C1 on Sheet1 to cell A1 on Sheet2.
- Add code to place the result from C1 + C2 on Sheet1 to cell A2 on Sheet2.
- Add code to place the result from C1 * C2 on Sheet1 to cell A3 on Sheet2.
- Run the code in the sub(F5). Cells on Sheet2 should have the values as follows:
A1 20, A2 100 and A3 1600
-
End of Activity 5
The Code Name of the Worksheet
In the activities so far, we have been using the default names of the worksheet such as Sheet1 and Sheet2. It is considered good practice to give these sheets more meaningful names.
We do this by changing the code name of the worksheet. Let’s look at the code name and what it is.
When you look in the Project – VBAProject window for a new workbook you will see Sheet1 both inside and outside of parenthesis:
-
-
- Sheet1 on the left is the code name of the worksheet.
- Sheet1 on the right(in parenthesis) is the worksheet name. This is the name you see on the tab in Excel.
-
The code name has the following attributes
-
-
- We can use it to directly reference the worksheet as we have been doing e.g.
-
Sheet1.Range("A1")
Note: We can only use the code name if the worksheet is in the same workbook as our code.
-
-
- If the worksheet name is changed our code will still work if we are using the code name to refer to the sheet.
-
The worksheet name has the following attributes
-
-
- To reference the worksheet using the worksheet name we need to use the worksheets collection of the workbook. e.g.
-
ThisWorkbook.Worksheets("Sheet1").Range("A1")
-
-
- If the worksheet name changes then we need to change the name in our code. For example, if we changed the name of our sheet from Sheet1 to Data then we would need to change the above code as follows
-
ThisWorkbook.Worksheets("Data").Range("A1")
We can only change the code name in the Properties window.
We can change the worksheet name from both the worksheet tab in Excel and from the Properties window.
In the next activity, we will change the code name of the worksheet.
Activity 6
-
-
- Open a new blank workbook and go to the Visual Basic editor.
- Click on Sheet1 in the Project – VBAProject Window(Ctrl + R if not visible).
- Go to the Properties window(F4 if not visible).
- Change the code name of the worksheet to shReport.
- Create a new module and call it modAct6.
- Add the following sub and run it(F5)
-
Sub UseCodename() shReport.Range("A1") = 66 End Sub
-
-
- Then add the following sub and run it(F5)
-
Sub UseWorksheetname() ThisWorkbook.Worksheets("Sheet1").Range("B2") = 55 End Sub
-
-
- Cell A1 should now have the value 66 and cell B2 should have the value 55.
- Change the name of the worksheet in Excel to Report i.e. right-click on the worksheet tab and rename.
- Delete the contents of the cells and run the UseCodename code again. The code should still run correctly.
- Run the UseWorksheetname sub again. You will get the error “Subscript out of Range”. This cryptically sounding error simply means that there is no worksheet called Sheet1 in the worksheets collection.
- Change the code as follows and run it again. The code will now run correctly.
-
Sub UseWorksheetname() ThisWorkbook.Worksheets("Report").Range("B2") = 55 End Sub
End of Activity 6
The With keyword
You may have noticed in this VBA Tutorial that we need to use the worksheet name repeatedly – each time we refer to a range in our code.
Imagine there was a simpler way of writing the code. Where we could just mention the worksheet name once and VBA would apply to any range we used after that. The good news is we can do exactly that using the With statement.
In VBA we can take any item before a full stop and use the With statement on it. Let’s rewrite some code using the With statement.
The following code is pretty similar to what we have been using so far in this VBA Tutorial:
' https://excelmacromastery.com/ Sub WriteValues() Sheet1.Range("A1") = Sheet1.Range("C1") Sheet1.Range("A2") = Sheet1.Range("C2") + 50 Sheet1.Range("A3") = Sheet1.Range("C1") * Sheet1.Range("C2") End Sub
Let’s update this code using the With statement:
' https://excelmacromastery.com/ Sub UsingWith() With Sheet1 .Range("A1") = .Range("C1") .Range("A2") = .Range("C2") + 50 .Range("A3") = .Range("C1") * .Range("C2") End With End Sub
We use With and the worksheet to start the section. Anywhere VBA finds a full stop it knows to use the worksheet before it.
We can use the With statement with other types of objects in VBA including workbooks, ranges, charts and so on.
We signify the end of the With section by using the line End With.
Indenting(Tabbing) the Code
You will notice that the lines of code between the start and end With statments are tabbed once to right. We call this indenting the code.
We always indent the code between VBA sections that have a starting line and end line. Examples of these are as subs, the With statement, the If statement and the For loop.
You can tab the lines of code to the right by selecting the appropriate lines of code and pressing the Tab key. Pressing Shift and Tab will tab to the left.
Tabbing(or indenting) is useful because it makes our code more readable.
Activity 7
-
-
- Rewrite the following code using the With statement. Don’t forget to indent the code.
-
' https://excelmacromastery.com/ Sub UseWith() Sheet1.Range("A1") = Sheet1.Range("B3") * 6 Sheet1.Cells(2, 1) = Sheet1.Range("C2") + 50 Sheet1.Range("A3") = Sheet2.Range("C3") End Sub
End of Activity 7
Copying values between multiple cells
You can copy the values from one range of cells to another range of cells as follows
Sheet2.Range("A1:D4") = Sheet2.Range("G2:I5").Value
It is very important to notice than we use the Value property of the source range. If we leave this out it will write blank values to our destination range.
' the source cells will end up blank because Value is missing Sheet2.Range("A1:D4") = Sheet2.Range("G2:I5")
The code above is a very efficient way to copy values between cells. When people are new to VBA they often think they need to use some form of select, copy and paste to copy cell values. However these are slow, cumbersome and unnecessary.
It is important that both the destination and source ranges are the same size.
-
-
- If the destination range is smaller then only cell in the range will be filled. This is different to copy/pasting where we only need to specify the first destination cell and Excel will fill in the rest.
- If the destination range is larger the extra cells will be filled with #N/A.
-
Activity 8
-
-
- Create a new blank workbook in Excel.
- Add a new worksheet to this workbook so there are two sheets – Sheet1 and Sheet2.
- Add the following data to the range C2:E4 on Sheet1
-
-
-
- Write code to copy the data from Sheet1 to the range B3:D5 on Sheet2.
- Run the code(F5).
- Clear the results and then change the destination range to be smaller than the source range. Run again and check the results.
- Clear the results and then change the destination range to be larger than the source range. Run again and check the results.
-
End of Activity 8
Transposing a Range of Cells
If you need to transpose the date(convert from row to column and vice versa) you can use the WorksheetFunction Transpose.
Place the values 1 to 4 in the cells A1 to A4. The following code will write the values to E1 to H1
Sheet1.Range("E1:H1") = WorksheetFunction.Transpose(Sheet1.Range("A1:A4").Value)
The following code will read from E1:H1 to L1:L4
Sheet1.Range("L1:L4") = WorksheetFunction.Transpose(Sheet1.Range("E1:H1").Value)
You will notice that these lines are long. We can split one line over multiple lines by using the underscore(_) e.g.
Sheet1.Range("E1:H1") = _ WorksheetFunction.Transpose(Sheet1.Range("A1:A4").Value)
Sheet1.Range("L1:L4") = _ WorksheetFunction.Transpose(Sheet1.Range("E1:H1").Value)
How to Use Variables
So far in this VBA Tutorial we haven’t used variables. Variables are an essential part of every programming language.
So what are they and why do you need them?
Variables are like cells in memory. We use them to store temporary values while our code is running.
We do three things with variables
-
-
- Declare(i.e. Create) the variable.
- Store a value in the variable.
- Read the value stored in the variable.
-
The variables types we use are the same as the data types we use in Excel.
The table below shows the common variables. There are other types but you will rarely use them. In fact you will probably use Long and String for 90% of your variables.
Type | Details |
---|---|
Boolean | Can be true or false only |
Currency | same as decimal but with 4 decimal places only |
Date | Use for date/time |
Double | Use for decimals |
Long | Use for integers |
String | Use for text |
Variant | VBA will decide the type at runtime |
Declaring Variables
Before we use variables we should create them. If we don’t then we can run into various problems.
By default, VBA doesn’t make you declare variables. However, we should turn this behaviour on as it will save us a lot of pain in the long run.
To turn on “Require Variable Declaration” we add the following line to the top of our module
Option Explicit
To get VBA to automatically add this line, select Tools->Options from the menu and check Require Variable Declaration. Anytime you create a new module, VBA will add this line to the top.
Declaring a variable is simple. We use the format as follows
Dim variable_name As Type
We can use anything we like as the variable name. The type is one of the types from the table above. Here are some examples of declarations
Dim Total As Long Dim Point As Double Dim Price As Currency Dim StartDate As Date Dim CustomerName As String Dim IsExpired As Boolean Dim Item As Variant
To place a value in a variable we use the same type of statement we previously used to place a value in a cell. This is the statement with the equals sign:
' https://excelmacromastery.com/ Sub DeclaringVars() Dim Total As Long Total = 1 Dim Price As Currency Price = 29.99 Dim StartDate As Date StartDate = #1/21/2018# Dim CustomerName As String CustomerName = "John Smith" End Sub
Activity 9
-
-
- Create a new sub and call it UsingVariables.
- Declare a variable for storing a count and set the value to 5.
- Declare a variable for storing the ticket price and set the value to 99.99.
- Declare a variable for storing a country and set the value to “Spain”.
- Declare a variable for storing the end date and set the value to 21st March 2020.
- Declare a variable for storing if something is completed. Set the value to False.
-
End of Activity 9
The Immediate Window
VBA has a real nifty tool that allows us to check our output. This tool is the Immediate Window. By using the Debug.Print we can write values, text and results of calculations to the Immediate Window.
To view this window you can select View->Immediate Window from the menu or press Ctrl + G.
The values will be written even if the Immediate Window is not visible.
We can use the Immediate Window to write out our variables so as to check the values they contain.
If we update the code from the last activity we can write out the values of each variable. Run the code below and check the result in the Immediate Window(Ctrl + G if not visible).
' https://excelmacromastery.com/ Sub WritingToImmediate() Dim count As Long count = 5 Debug.Print count Dim ticketprice As Currency ticketprice = 99.99 Debug.Print ticketprice Dim country As String country = "Spain" Debug.Print country Dim enddate As Date enddate = #3/21/2020# Debug.Print enddate Dim iscompleted As Boolean iscompleted = False Debug.Print iscompleted End Sub
The Immediate is very useful for testing output before we write it to worksheets. We will be using it a lot in these tutorials.
Writing between variables and cells
We can write and read values between cells and cells, cells and variables,and variables and variables using the assignment line we have seen already.
Here are some examples
' https://excelmacromastery.com/ Sub VariablesCells() Dim price1 As Currency, price2 As Currency ' place value from A1 to price1 price1 = Sheet1.Range("A1") ' place value from price1 to price2 price2 = price1 ' place value from price2 to cell b2 Sheet1.Range("B2") = price2 ' Print values to Immediate window Debug.Print "Price 1 is " & price1 Debug.Print "Price 2 is " & price2 End Sub
Activity 10
-
-
- Create a blank workbook and a worksheet so it has two worksheets: Sheet1 and Sheet2.
- Place the text “New York” in cell A1 on Sheet1. Place the number 49 in cell C1 on Sheet2.
- Create a sub that reads the values into variables from these cells.
- Add code to write the values to the Immediate window.
-
End of Activity 10
Type Mismatch Errors
You may be wondering what happens if you use an incorrect type. For example, what happens if you read the number 99.55 to a Long(integer) variable type.
What happens is that VBA does it best to convert the variable. So if we assign the number 99.55 to a Long type, VBA will convert it to an integer.
In the code below it will round the number to 100.
Dim i As Long i = 99.55
VBA will pretty much convert between any number types e.g.
' https://excelmacromastery.com/ Sub Conversion() Dim result As Long result = 26.77 result = "25" result = 24.55555 result = "24.55" Dim c As Currency c = 23 c = "23.334" result = 24.55 c = result End Sub
However, even VBA has it’s limit. The following code will result in Type Mismatch errors as VBA cannot convert the text to a number
' https://excelmacromastery.com/ Sub Conversion() Dim result As Long result = "26.77A" Dim c As Currency c = "a34" End Sub
Tip: The Type Mismatch error is often caused by a user accidentally placing text in a cell that should have numeric data.
Activity 11
-
-
- Declare a Double variable type called amount.
- Assign a value that causes a Type Mismatch error.
- Run the code and ensure the error occurs.
-
End of Activity 11
VBA Tutorial Assignment
We’ve covered a lot of stuff in this tutorial. So let’s put it all together in the following assignment
Tutorial One Assignment
I have created a simple workbook for this assignment. You can download it using the link below
Tutorial One Assignment Workbook
Open the assignment workbook. You will place your code here
-
-
- Create a module and call it Assignment1.
- Create a sub called Top5Report to write the data in all the columns from the top 5 countries to the Top 5 section in the Report worksheet. This is the range starting at B3 on the Report worksheet. Use the code name to refers to the worksheets.
- Create a sub call AreaReport to write all the areas size to the All the Areas section in the Report worksheet. This is the range H3:H30. Use the worksheet name to refer to the worksheets.
- Create a sub called ImmediateReport as follows, read the area and population from Russia to two variables. Print the population per square kilometre(pop/area) to the Immediate Window.
- Create a new worksheet and call it areas. Set the code name to be shAreas. Create a sub called RowsToCols that reads all the areas in D2:D11 from Countries worksheet and writes them to the range A1:J1 in the new worksheet Areas.
-
End of Tutorial Assignment
The following quiz is based on what we covered this tutorial.
VBA Tutorial One Quiz
1. What are the two main differences between the code name and the worksheet name?
2. What is the last line of a Sub?
3. What statement shortens our code by allowing us to write the object once but refer to it multiple times?
4. What does the following code do?
Sheet1.Range("D1") = result
5. What does the following code do?
Sheet1.Range("A1:C3") = Sheet2.Range("F1:H3")
6. What is the output from the following code?
Dim amount As Long amount = 7 Debug.Print (5 + 6) * amount
7. What is the output from the following code?
Dim amt1 As Long, amt2 As Long amt1 = "7.99" Debug.Print amt1 amt2 = "14a" Debug.Print amt2
8. If we have 1,2 and 3 in the cells A1,A2 and A3 respectively, what is the result of the following code?
Sheet1.Range("B1:B4") = Sheet1.Range("A1:A3").Value
9. What does the shortcut key Alt + F11 do?
10. In the following code we declare a variable but do not assign it a value. what is the output of the Debug.Print statement?
Dim amt As Long Debug.Print amt
Conclusion of the VBA Tutorial Part One
Congratulations on finishing tutorial one. If you have completed the activities and the quiz then you will have learned some important concepts that will stand to you as you work with VBA.
In the Tutorial 2, we are going to deal with ranges where the column or row may differ each time the application runs. In this tutorial, we will cover
-
-
- How to get the last row or column with data.
- The amazingly efficient CurrentRegion property.
- How to use flexbile rows and columns.
- When to use Range and when to use Cells.
- and much more…
-
.
Please note: that Tutorials 2 to 4 are available as part of the VBA Fundamentals course in the membership section.
What’s Next?
Planning to build or manage a VBA Application? Learn how to build 10 Excel VBA applications from scratch.
Please keep me on your e-mail list. I am very much interested in your information, just busy, busy, busy… (COVID has added strain to business…)
No problem Verle.
would like to be part of you mailing list and intrested to learn.
You can go to the homepage and sign up there or click on the book image in the left sidebar.
I like your lessons on Excel VBA but your ebook is out of reach for those of us in Africa
Thanks
You’re welcome.
nice
Very Nice.. Looking forward to learn from this.
I’m must interested in this.
Please, how difficult is it when you’re working on a Mac?
Regards
Hello! Do you know any website where I can find challenges to solve, so that I can practice my VBA and Excel formulas knowledge?
Thank you in advance 🙂
Hey,
I am on the Activity 6, when I try to run it, it is giving me “Run-Time error ‘424’: Object Required”
I changed the worksheet name and followed all the steps and even mimicked the Activity 6 video.
Still nothing. Please advise
Which line of code is giving you the problem?
Hi, Paul, Thanks so much for putting this tutorial together. I was dong well and learning a lot about VBE up through Activity 6. Instructions were clear. However, I ran into a snag with Activity 7: unlike with the earlier activities, there was no guidance as to whether I should be using a previous workbook or worksheet and whether the “Use with” should be building on previous subs.
Paul, please ignore my question. I realized that it was just an exercise in writing the code and not intended as something to run.
No problem Ted, Glad you enjoyed the tutorial.
Excellent tutorial. Must read for all beginners and useful reference for other coders.
Thanks. Glad you like it.
Thanks for showing such great tutorials! Back in 2019 your tutorials helped me to gain confidence to figure out lots of stuff in VBA. Thanks to that starting point i went into a different path and i am now writing code in JavaScript and code in Node JS
That’s great to hear Berend. Best of luck with it.
Very nice examples
Paul … your contents are great and I learned a lot from them.
Glad you like the contents Ahmed.
Good day,
could you please advise me? I need to make a button to add and remove a line. The row is inserted below the current row and vice versa.
Keep me on your email list, please. Thanks for your messages, and I am asking for more.
Would like to keep getting the emails.
Thanks!
I gather most of the mails you’re sending, but sometimes I need solutions for specific problems in my coding and that’s not always easy to find. I do work a lot with spreadsheats, even in a way where a database might much more efficient, but it’s like a sport: when you like it, you just do it.
Please keep me on the list, I file everything you send for reference
Thanks Paul for your emails,
Although I did not interact , I did read some of your excellent articles posted on your site and learned much.
It is an excellent site for those who need not only to learn vba but also to have a clear and adequate explanation to master VBA.
I have been away from programming due to life demands, however at the beginning of this week I resumed learning and practicing VBA.
My regards
Elias
Thanks Elias.
Thanks Paul for your emails.
I have been tied up with other commitments but … please leave my name on your list. I have found your material to be very helpful and easy to understand.
Many thanks for material well presented.
Regards
Nigel
Thanks Nigel
Thanks for this website! I am enjoying learning with your easy to follow-along method of instructing. The vba-tutorial-1 webpage makes reference to the ExcelVBAHandbook, and indicates you learn how to build 10 Excel VBA applications from scratch. What does the additional lesson cover? Thanks.
Hi Pam, I’ve sent you an email.
Paul, do you have a description of whether it is better to start with the handbook course or the membership webinar videos?
Hi Jason,
Thanks for your question.
The Excel VBA Handbook course teaches how to create real-world Excel VBA applications. This course is for you if you want acquire the skills to build any Excel VBA applications, write better code, reduce errors and create your applications 5 to 10 times faster then this course can help.
The Webinar Archives is a collection of videos that do a deep dive on particular Excel VBA topic. This can be very helpful if there is specific areas you need to know more about.
-Paul
Hi Paul, Thank you for the great website. The articles are very well organized. We have a new challenge as offices like mine are moving to MS Office 365 (cloud). I’m told VBA is not supported there. But a Microsoft version of javascript is their new automation language. There is a script- check plug in for Excel, to help folks re-write their VBA code into javascript. I havent tried it. I have thousands of lines of VBA code to consider! What do you think doing an article about this situation? Regards, WRS
Are you referring to TypeScript(Office Scripts) as the new automation language. Typescript is great but converting from VBA into TypeScript is tricky.
The reason is that using events or referencing other workbooks requires using Power Automate in conjunction with Office Scripts. This means that you’re not just converting one language to another, but you have to replace events and workbooks with Power Automate processes. This will require a bit of thought on the design of the new version.
Thanks for this. can we have document pdf of this basic notion ?
all the best Paul.
I am wanting to learn VBA for inventor.