Jason Jay
© Copyright 2017 by Jason Jay - All rights reserved.
If you would like to share this book with another person, please purchase an
additional copy for each recipient. Thank you for respecting the hard work of
this author. Otherwise, the transmission, duplication or reproduction of any of
If you already know how to use Microsoft Excel but there’re a few
things you can’t do, it is time to learn the strongest functionality it has, Visual
Basic for Applications (VBA).
Visual Basic for Applications is a programming language incorporated
in Microsoft Excel, Access, PowerPoint and even Word, which let you do all
things you already know about them and much more. For example, you want
that every time you open a specific Microsoft Word file it writes
automatically the current date two lines below where you left last time. Or
maybe you want a whole spreadsheet of Excel without formulas on it and still
applying them as if they were there. How would you do that? All these things
and much more are done with Visual Basic for Applications for Microsoft
Office.
Look at the example below:
It looks like a program made for analysis, and it does. Guess what
program it is? Probably you are thinking it is not any Microsoft Office
program, but let me tell you that it was made with Microsoft Excel, how
would you do something like that without programming? There’s no way!
You’ll learn much more than that and will be able to create your own
programs using Visual Basic for Applications (VBA).
If you need a very specific program for your business analysis,
something for personal use, or even just for having fun, you need Visual
Basic for Applications now!
CHAPTER 1
VBA Developer TAB
We’ll use Microsoft Excel 365 for this instructions and examples, however,
from Microsoft Excel 2007 onwards it will work the same.
Accesing to the Developer TAB
Microsoft Excel doesn’t show the Developer TAB by default. It only has
File, Home, Insert, etc. But there’s no one called Developer. To access to this
TAB there are different options, but we’ll show the easiest one.
1. Right click to the Ribbon (any part inside the red box, except the
buttons).
Quiz 1
Creating a Macro
You’ll see a few options available in the Developer TAB, by now we’ll start
to use the Record Macro button.
A Macro is an automated sequence which will apply every time you play it.
Let’s see a practical example of it:
Imagine that in your job you do the same process every morning. It takes
some valuable time and even you’re getting bored of that.
The process is the following:
a) You receive a Microsoft Excel file from your boss with some data
and you need to write the date using Year, Month and Day in different
columns.
You do this because it is the format your job needs and you’ve been adding
the same values every day for a few years.
In this case an semi-automated process would be helpful. Excel gives that
option to all of us with Macros. A Macro is a semi-automated process which
let you run a specific task using a shortcut.
To create a Macro, follow the sequence below:
a) Click the Record a Macro Button.
b) Write a name for your Macro. (Needed)
c) A shortkey which every time you press will Run the Macro. Be
careful, don’t add Ctrl + C or Ctrl + v, otherwise it won’t copy or paste
anymore, but run the Macro. In case you want a more specific shortcut,
hold the shift key as you press a letter. For example, ctrl + shift + c. To
make it work, don’t press ctrl as you add a short cut. (Optional)
d) Store Macro in: Personal workbook: Will be available for all the
files you open with Excel on that computer; New Workbook will be
available for a new file only. This workbook, will apply only to the
current open file. (Needed to choose one)
e) Write a description about what that Macro does. (Optional)
f) Click Ok.
g) Start doing everything you always do, which would be adding the
current date in this case.
h) Once you finish, go back to the Record Macro Button, which now is
called Stop Recording. Press it and now should be saved.
This would be a very simple Macro, it only adds the current date, but what
would you think if you also need to import data from a web page which is
updated every hour, and need to classify it using a few charts, and you do the
same process several times a day. No doubt, a good Macro would be useful.
The process to get it any Macro, is the same we’ve followed. There’s only an
important thing to consider when creating one, it is to choose between using
Relative References or not.
Relative References
The Relative References button is just below the Record a Macro Button.
Once you click on it, it remains active until you click on it again. It is used to
record macros in which the process should be applied to different ranges
instead of one already set.
Its functionality is very useful. A macro recorded without relative references
will always repeat the process on the same cells used when recorded. But if
you use relative references, the macro will run from the active cell. Using the
example above, what If you need the dates written on cells F4:H4 instead of
B2:D2? The only thing you should do is to select F4 and run the Macro. Or
select any cell you need and run it. But you need to record the Macro using
Relative References, and then select the cell and run it, otherwise it wouldn’t
work.
This might be a little tricky, because most people would attempt saving the
file without reading this notification:
The following features cannot be saved in macro-free workbooks:
°VBA project
To save a file with these features, click No, and then choose a macro-enabled
file in the File Type list.
To continue saving as a macro-free workbook, click Yes.
Most people would just click Yes, and according to this message they
wouldn’t save the file with their Macros, but as Macro free. It would make
you lose all your Macro work.
To save the Macro, just click No to the message above, then select save as
Excel Macro-Enabled Workbook.
Click on Save, and it is done!
Once you open it again, you should see a message saying Macros have been
disabled, and a Button saying Enable Macros. Click on it and won’t have
further problems. If you don’t click on it, you won’t be able to work with
VBA, at least you enable them on Macro Security in the Developer TAB, or
follow the steps on Chapter 5: Macro Security.
Quiz 2
1. What is a Macro?
a) It is an Excel Formula
b) It is a shortcut which runs a recorded process.
c) It is a built-in process included in Excel.
Next to the Record Macro button, there’s another one called Visual Basic.
Click on it and you’ll see a code like this:
Range("A1").Select
ActiveCell.FormulaR1C1 = "1"
Range("A2").Select
Congrats, you have some Visual Basic Code now. It means a few orders:
Select Cell A1
Write the number 1
Select Cell A2
It is exactly what we did. But now, we’ll edit the code so that the Macro does
something else.
If we see, there’s a pattern, which is: select, write, select. So, we could
continue the pattern by adding a few more things directly, like this:
Range("A1").Select
ActiveCell.FormulaR1C1 = "1"
Range("A2").Select
ActiveCell.FormulaR1C1 = "2"
Range("A3").Select
ActiveCell.FormulaR1C1 = "3"
Range("A4").Select
Now that you added this, run the macro, but now you’ll see a second way to
run it. Press the green button above the code. Once you click on it go to the
Excel Spreadsheet by clicking on the Excel symbol. You’ll see that the cells
A1:A3 are filled with the numbers we wrote and the Cell A4 is selected.
It may look very complex, and it is like that because humans use to do things
that machines wouldn’t. I needed to select cell A1, A2, A3 and son on. But
does Excel really need to select it to write a simple number?
Let’s try it by adding the following code:
Range("A1") = 1
Range("A2") = 2
Range("A3") = 3
That’s it! Excel can skip steps humans can’t. So, it makes it much more faster
and easy to accomplish its work.
Range("A1:A100") = 1
Oops! It adds a number 1 to all cells from A1 to A100. Let’s try another
thing:
Range("A1:A100") = 1 + 1
It adds a number two instead. So, How do I tell Excel that I want it to fill
cells in sequence?
There are several ways. One is to record a Macro and during the process add
a number 1 to the cell A1, then hold right click on the small square and scroll
down until you select A100. Select fill series. Go to Visual Basic and you’ll
see a code like this:
Range("A1").Select
ActiveCell.FormulaR1C1 = "1"
Selection.AutoFill Destination:=Range("A1:A100"),
Type:=xlFillSeries
Range("A1:A100").Select
It works! I think we already have a great idea about how to get the VBA code
we want. Record a Macro, and there it is. However, there’re a lot of functions
that Macros can’t offer. For example, fill up cells in sequence according to
the number written in cell B2, and once it changes fill up the sequence again
according to that number. So, if there’s a number 1 it will be filled one by
one, if I change it to five, it’ll go five by five and so on. How are you going
to record that in a Macro? What if it is not just filling up a sequence, but a
Financial matter, working with real numbers and you need to solve a problem
like this fast?
Recording a Macro isn’t enough always, but in most cases, it helps.
Visual Basic Application (VBA) is a programming language, but it is not
necessary to know VBA code or computer programming if the Macro
Recorder does what you want.
You should know that when you record a Macro it records even your
mistakes, and it will repeat them when you run it. If you want to solve a
problem like this you have two options:
1. Record the Macro again.
2. Edit the VBA code.
Remember that recording a good Macro or writing a good VBA code,
will make Excel to run smoothly. Otherwise, you can expect a not
responding message until it finishes or maybe it even could stop
working.
We’ll focus on things you can’t do using only recorded macros. So, you can
learn how powerful Visual Basic for Applications is in Microsoft Excel.
In VBA we declare variables too. In this case we’ll add some functionality to
the ActiveX Button we added in the previous step.
First, we’ll need to choose the correct numeric variable.
These are the most types of variables, check them out and see their storage
size and range by now:
In this table, we see that each variable has different ranges, some larger than
others, and in the same time the size storage varies too. The smallest unit of
memory available is called a byte, and according to this table it goes from
number 0 to 255.
Let’s do this to start:
1. Enable the Design Mode Button, which is next to the Insert Button in
the Developer TAB.
2. Double click on the ActiveX Button.
3. Now you’re ready to write the code for it.
X=1
Y = Range("B1")
Do
Range("A" & X) = Y
X=X+1
Y = Y + Range("B1")
Loop Until X = 101
End Sub
Y = Y + Range("B1")
This will follow the same process as the last step, but with the value added in
Range(“B1”) which will be that one we added. If B1 has a 5, then it will add
another 5, following a sequence according to what we wrote on B1.
Loop Until X = 101
It means that the same process between Do and LOOP will be repeated until
X=101.
End Sub
Means the end of the procedure.
Bugs are errors when one writes a wrong code. In our example the code
works fine with numbers from 0 to 255 only, and once we ask the file to go 3
by 3 one hundred times we are expecting it to go from 3 to 300, which is
more than 255, so it causes an overflow.
To fix it, we have two options, we increase the value of the variable or we let
Excel to add it automatically.
Let’s consider the possibility of increasing the capacity of the variable, we
can change it from byte (0 to 255) to integer (-32,768 to 32,767). It will be
great if we were pretty sure that we won’t work with higher numbers of
32,767, or even change it to “long” which goes from -2,147,483,648 to
2,147,483,647. It would be great to work even with millions, but let’s
imagine that someone needs to put billions in B1. In that case even a long
variable wouldn’t be enough. So, the best way to solve this is don’t declare
the variable and leaving the code in the following way:
Private Sub CommandButton1_Click()
Dim X As Byte
X=1
Y = Range("B1")
Do
Range("A" & X) = Y
X=X+1
Y = Y + Range("B1")
Loop Until X = 101
End Sub
End Sub
Probably, one of the biggest problems about not declaring a Variable are
creating bugs, because we simply type something wrong. Let’s make a simple
example of it.
As you see it is a very similar code to one we did before. It should stop once
myvariable equals 300, but it continues. Can you see the problem?
If not, run the code. You’ll notice that it will go beyond 300, and practically
will have no end, or at least until it has no more files. In Excel 365 the total
files available is 1048576, so it will go until A1048576 and will enter on an
error.
If you don’t want to wait until that, Press ESC Key which will interrupt the
code execution and then press End Button.
Well, the problem is that we miss just one letter of a variable. We named it
myvariable but when coding we miss the letter L : Do Until myvariabe. Excel
identified myvariable and myvariabe as two different variables, and
automatically assigns them as Variant type.
What would have happened if your code has a lot of code? To find the
problem you should look at all your code to find the letter you missed! As
you see it would be a big trouble! That’s why Microsoft Excel has an option
called Require Variable Declaration.
It won’t let you write anything which is not code or a declared variable. To
enable this feature do the following:
1. Visual Basic
2. Tools Tab
3. Options
4. Require Variable Declaration
5. Ok.
It will add something above the code, which says Option Explicit. But, you
won’t see that change until you start a new project, insert a module or you
write it by yourself. That’s why it is important to start a new project always
with this option enabled.
In this case, add Option Explicit manually above the code.
Option Explicit
Public Sub Infinite()
myvariable = 200
myrange = 1
Do Until myvariabe = 300
Range("A" & myrange) = myvariable
myvariable = myvariable + 1
myrange = myrange + 1
Loop
End Sub
APPs Performance
Now, imagine that you really need to fill one by one all the cells from A1 to
A1048576, and that it is one of the functionalities your APP should do.
Almost always Developers are concerned about creating Apps which run fast.
In Excel it is not an exception. Try running the following code and see how
long it takes to fill all column A with numbers:
Run it and time how long it takes, then compare how faster this way is. Don’t
forget to erase Column A before you start. You should notice a big
difference! Screenupdating is a great tool when need to increase an App
performance. However, now go to the spreadsheet and try to do something.
You should notice that it is not possible to do anything, or at least you won’t
see that, because screenudating = false turned off the visibility changes. So,
when you use Application.screenupdating = false NEVER forget to add
Application.ScreenUpdating = True at then end of your code, and even better
as a backup in case of error do as the code below:
Constant Value
vbOK 1
vbCancel 2
vbAbort 3
vbRetry 4
vbIgnore 5
vbYes 6
vbNo 7
Those are the kind of messages you can display, and once you click on it, it
will return the value according to the table above.
Run the following code:
Public Sub fff()
Dim X As Byte
X = MsgBox("This is the body",
vbYesNoCancel, "This is the title")
MsgBox X
End Sub
It will display a msgbox with a Yes, No and Cancel button. Once you click
on any button, X will take that value and will display it on the next MsgBox.
So, if you click on Yes, you’ll see a number 6, and if you click on No, you’ll
see a number 7.
This is a great advantage, because we can ask if user want to proceed or
not, etc.
We see that once we are adding a msgbox, we can also create a warning
message, or information, or critical, etc. Let’s combine one in the code
below, so we can figure out how to do it:
End Sub
It will tell you the button you pressed. It means that if you can know
what button is pressed on then you can control an action according to it. For
Example execute a Macro.
X = Range("A1")
If X = 5 Then
MsgBox "There's a number " & X
ElseIf X = 6 Then
MsgBox "There's a number " & X
ElseIf X = 7 Then
MsgBox "There's a number " & X
ElseIf X = 8 Then
MsgBox "There's a number " & X
Else
MsgBox "There's another value"
End If
End Sub
So “if” makes a conditional, “elseif” is checked in case the first condition
doesn’t meet, and will check as many “elseif” as you add until one condition
meet. “Else” will run in case any condition doesn’t meet. So, if we don’t add
any number from 5 to 8, we’ll see a message saying “There’s another value”,
but if we put a number 8, then we’ll see a message saying There’s a number
8.
If, elseif and else are very similar to another kind of code called Select Case,
Case, and Case Else However, this one is more efficient than IF in some
cases. Let’s do the same than above but using case instead:
This last one occupies much less code. It was easier and better. You can do
practically the same but is up to you which one you want to use.
Quiz 3
What is a Variable?
a) It is a value which never changes.
b) It is a value which changes.
c) It is a special number.
What is a Module?
When we start writing VBA code, we’ll usually start writing on Sheet1. But,
in order to understand Modules, Procedures Private and Public, we’ll create a
visual calculator. First, we´ll do it on a spreadsheet, and then we’ll do it as a
real program.
A module, is something like a Box, in which we add some code to run when
we “call” it. To understand how it works, we’ll create our calculator using a
few Modules.
In the image above, you ‘ll see that there’s a property called Caption. That’s
where You’ll add the “+” sign.
You can even play a little bit with the other options, like the Backcolor, Font,
Height and even add a picture. I left all options as they were by default.
Once you repeated the process for all the buttons, let’s start with the next
steps. Let’s create a Module!
Follow these steps:
1. Open Visual Basic through the Developer TAB. By default you’ll see
something like this:
4. You’ll see a New Folder Called “Modules” with a file there Called
“Module 1”:
Welcome to your second bug! The problem here is a very usual one. We are
asking Excel that cells A2 + B2 are equals to C2 instead of C2 equals to A2 +
B2. This problem is just an order problem. You better don’t forget this rule!!
Always add first the cell you want to be changed, then add the values that
you’ll need. Like this:
Range("C2") = Range("A2") + Range("B2")
If you see a yellow line which doesn’t let you run it, just click stop, correct
your code and run it again.
Now you’ll see that in the cell C2 we find the result of A2+B2.
Let’s complete the other modules repeating the correct process above. Add
these codes to do that:
Minus Module:
Public Sub Minus()
Range("C2") = Range("A2") - Range("B2")
End Sub
Division Module:
Times Module:
1. Go to the spreadsheet
2. Click on Design Mode
3. Double click each button. You’ll see that every time you do it, it adds
some code to the Sheet1(Sheet1). Finally, it should look like this:
Now, let’s do the process called “Calling”. To do that will just write every
Module between its corresponding lines:
You also should change the written code on Sheet1. Just add that one we’ve
just added to each sub procedure in the modules:
PUBLIC means that that procedure can be called from anywhere. You’ll even
notice that all of them are even in the Macros list, but those saying PRIVATE
aren´t.
Try its meaning by changing just one or two Modules, change the word
Public to Private, and try run it.
As it was a Private one, it couldn’t find it. Let’s change the word Private back
to Public, you’ll see that it will work.
So, Private ones can’t be called, Public ones can be called, even from the
Macros list. In other words, Privates can’t be linked, but Publics can.
We’ve seen the most basic functions of VBA. You should have a great idea
about VBA now. However, let’s do something much more professional: A
real calculator.
Adding Letters?
FORMS
Visual Basic for Applications in Excel has a very attractive feature called
Forms in which we can create a visual application like that we saw in the
beginning of this book. That’s how we’ll create the calculator.
Follow these steps:
That’s an userform. It will be used to create a Calculator this time. First, you
see a Box called “Controls” with several options inside. We’ll use it almost
all time, so don’t close it. In case you do it, ou can open it again by clicking
on View TAB, then on Toolbox.
Don´t close the properties Userform either. This will be the main tools
we’ll use for this project, and In this case, we won’t even touch a Excel
Spreadsheet.
In the properties window change these values:
Name: CalculatorProject
Caption: Calculator
Height: 260
Width: 200
Once it is selected, click on the upper side of the form, hold and drag to make
a rectangle which will be our screen for the calculator.
Now, select the label, and change its name in the properties. Name It Display.
Then, erase the caption value.
In the ToolBox, select CommandButton, then add a series like the following:
Everytime you add a new button, make sure to add it with the following size:
Height: 30
Width: 36
TIP: Make just one, then copy and paste all the buttons you need. Place them
in the correct order, then make sure to add each button with the following
info:
Name Caption
CmdDel Del
CmdCE CE
CmdPercent %
CmdTimes *
CmdDivision /
CmdAdd +
CmdMinus -
CmdEquals =
Cmd1 1
Cmd2 2
Cmd3 3
Cmd4 4
Cmd5 5
Cmd6 6
Cmd7 7
Cmd8 8
Cmd9 9
CmdDot .
Cmd0 0
Cmd00 00
Great!
Let’s repeat the process to all the numbers and symbols, by double clicking
on every button and once it adds some code automatically, write the correct
code line between them, look at the following code so you may have a better
idea:
All this code should let us see every number and symbol on the display.
Button equals, Del and CE are those we don’t see written on our display, and
will give them a different treatment.
=left() Displays from the left the value, according to the number of letters we
told it to do.
=len() counts the number of letters contained on a cell.
-1 It will subtract one from the total of letters or numbers of len().
The result is displayed above. It is clear, so what does happen if we repeat
the process several times applied to the same cell?
Repetitions Value (Cells Formula applied Result
as A1 Below)
1 12345678 =left(A1,len(A1)) 12345678
2 1234567 =left(A1,len(A1)) 123456
3 123456 =left(A1,len(A1)) 12345
So, It does what a DEL button should do. We need that every time we push
on that button it erases only the last letter or number added, as this formula
does. Then, we need the button to apply this formula. How to do that in
VBA?
First, double click on the button and add the following code:
X = Len(Display.Caption) - 1
Y = Display.Caption
Display.Caption = Left(Y, X)
That’s it!! We just added two variables and used them in a very simple
sequence! Try it out. Add a few numbers and then press this button. It should
work. However, what does happen if there are no more numbers and you
press the button?
That’s obvious that it would produce an error. How to solve this?
The first line declares X as a variant which means that could store any
value.
X is equals to the SUM(display.caption)
Which should be like X = sum(2+2*4/7)
Run the program and try it now! It works!! Now, write a bad code,
something like just: 5*
And press =.
Another bug!
That’s why programmers try their apps frequently. You have to do the same
always. AS you see we have fixed several bugs only working on a Calculator,
but once you get used to code will identify and even prevent them easier. I
know that.
To fix this bug, we’ll apply our first Control Errors. So, every time something
goes wrong it will be applied instead this kind of windows.
Add the Following code:
Now, I think it is not nice to see the Error message even after if I typed
another button:
By the way, You learned how to relate a little bit a spreadsheet and VBA,
because we are using the range A1. What if we don’t even want to use any
cell of a spreadsheet??
As we saw, we can’t use variables. Right? Obviously, we can!! We just need
to know the way.
Now, you can erase everything from the equals button, change the code from:
On Error GoTo A
Range("A1").Formula = "=" & Display.Caption
Display.Caption = Range("A1").Value
Exit Sub
A:
Range("A1").Clear
Display.Caption = "Error"
End Sub
TO:
Private Sub CmdEquals_Click()
On Error GoTo A
Display.Caption = Application.Evaluate(Display.Caption)
Exit Sub
A:
Display.Caption = "Error"
End Sub
This calculator is working fine. But we don’t like to see the whole
spreadsheet behind. We don’t even want to see Excel opened at all, because It
is not a common thing to see when we use an app, so let’s take the
spreadsheet out!
It should look like this:
We just see the Desktop behind, and not any spreadsheet.
Let’s do it step by step. We’ll learn more about VBA functionalities, and
even some Macro securities.
Follow these steps:
1. First than anything, we want that our calculator opens
automatically once the file is open. So, in the Folder VBA
Project(Calculadora), select ThisWorkbook. You should see two
options, one says General and the other says Declarations.
2. Open the General one and select Workbook.
End Sub
1. Open VBA.
2. CalculatorProject
3. Double clik on any part of your Form to see the code. Not
the caption neither the buttons, but any other part of it.
4. It will open something like this:
End Sub
End Sub
Macro Security
Our Calculator seems to work great now. However, try doing the following:
1. 7*7
2. Press Equals Button
3. You see 49
4. Now, I want 49+1. So, type (+) …
5. You’ll notice that 49 erases automatically. It is not normal
in a calculator, but it should let me add some code after it
displayed a result. Let’s add the code.
Maybe, we are in a trouble. How are we going to edit the VBA code if
it opens and closes Excel automatically? How are you going to access
to that??
This is a great opportunity to understand Macro security.
You should have clicked on the Enable Macros Button to work with
VBA as we learned on Chapter 2. Once you click on it, Excel saves a
path in which that specific file is allowed to work with Macros. So, to
disable the allowed Macros all you have to do is to move the file to
another location. Try to do it, and then open it again. You’ll notice a
message saying that Macros have been disabled.
Comments
Now, we don’t want our calculator to erase what is written on our display,
unless it is an error message. It will allow us to work more efficiently, so we
need to go again to the code which erases that. Do you remember which one
does that? Probably you do because they are only a few buttons. However,
what would have happened if they were hundreds and hundreds of
commands?
It is always convenient to write a few comments which will let us
identify easily what things some code does. It is very common to fix a few
bugs, add, remove or improve some functionality when programming. So,
don’t forget to add Comments to let you go faster to the code you need to
change.
In this case we need to change the Equals Button. However, this has
two codes added. One runs when we click the button and the another once we
stop selecting it.
Private Sub CmdEquals_Click()
On Error GoTo A
Display.Caption = Application.Evaluate(Display.Caption)
Exit Sub
A:
Display.Caption = "Error"
End Sub
Private Sub CmdEquals_Exit(ByVal Cancel As MSForms.ReturnBoolean)
Display.Caption = Empty
End Sub
The code we need to change is the second one of those above. But first, let’s
add a few comments to remember what they do for future reference. To add
comments all you need to do is write what you want by adding a ‘ in the
beginning of each sentence. In the Example below I added two sentences, so I
needed to put a ‘ at the beginning of each sentence.
It is exactly what we want. Try it! Type something like 3* then Equals. It
displays the error message and erases it once you type something else. Now,
type again 7*7 then equals. You should see 49, now type +1 It works!
It only erases the error message but keeps the numbers. Now, although it is
working fine, we’ve added some unnecessary code: Display.Caption =
Display.Caption
Let’s delete it, including “else” which means “otherwise”. Maybe we
wouldn’t notice it, but it is not professional and in a very small degree it
consumes resources. Never add unnecessary code to any program you make.
It will be great for you and those who use your program. If you make bad
coding habits, you probably will have some future troubles when need to add
pages and pages of code.
Once you delete the unnecessary code it should look like this:
For this project, the whole code in the CalculatorProject should look like this:
5. After you do that, you should see the number one underlined.
6. When you see something underlined like that, not only in Excel
but in all Microsoft Operating Systems, it means that if you hold
Alt+ “The underlined letter or number” it will run it.
7. Try running the Calculator and Press Alt+1 to see what it does. It
should type number one.
8. Do the same for all the other numbers and symbols, except for
DEL, CE, 00 and =.
1. Open VBA
2. Click on Tools
3. Click on VBAProject Properties
4. Protection TAB
5. Add a Password Lock for viewing if you want
6. Click on OK
In that way, you protect your calculator code!!
Quiz 5
What’s an Userform?
a) It is a Visual Interface of an Application.
b) They are command Buttons, labels and Checkboxes.
c) It is a preloaded app which we need to edit for personal use.
What are the ways to disable Macros or VBA once they are
enabled?
a) Rename the file, move it from its location and in Developer
TAB and Macro Security
b) Developer TAB, Macro Security only
c) There’s no way to do it once they are enabled.
Visual Basic for Applications is a great tool and it is one of the most
powerful programming languages used in the world for Analysis. As you
learn VBA you’ll make wonderful projects.
You’ve learned the basics to use VBA and even create Apps! Now, it is up to
you how to use this knowledge.
Experiment coding, create new Projects! Do it Great!
Exercises Solutions
Answers Chapter 1
Answers Chapter 2
1. What is a Macro?
b) It is a shortcut which runs a recorded process.
Answers Chapter 3
What is a Variable?
b) It is a value which changes.
What is the storage size of a byte variable and its range?
c) It stores 1 byte and goes from 0 to 256.
What is the advantage of declaring variables?
a) It consumes less RAM and makes it run smoothly.
Is it obligatory to declare variables?
a) Only if Require Variable Declaration is enabled
Msgbox returns a value depending on the button pressed:
b) It returns a value depending on the button pressed
Answers Chapter 4
Answers Chapter 5
What’s an Userform?
a) It is a Visual Interface of an Application.