Vba excel 2019 как открыть

Visual Basic for Applications (VBA) is a form of the Visual Basic programming language integrated into all Microsoft Office products. You can create add-on components within your basic Excel 2019 spreadsheet to create additional functionality. VBA can get complicated, but knowing how to create basic code and functionality can improve your spreadsheet’s usefulness and automate certain activity that would take hours of time.

Enabling the Developer Tab in Excel 2019

To use VBA, you need the «Developer» tab enabled. The «Developer» tab has several buttons and features that enhance the way you create spreadsheets. If you don’t have the «Developer» tab enabled, follow these next steps to enable it.

Click the «File» ribbon tab, and then click the «Options» link that shows in the bottom-left section of the Excel window. This opens a new configuration window where you can set preference for different elements of Excel. Click the «Customize Ribbon» option in the left panel.

(Excel options and configuration window)

In the image above, notice that the developer option is checked in the far right panel. This check box enables the «Developer» tab in your Excel view. Click «OK» to enable the tab and return to your Excel 2019 interface.

(VBA button location)

You should now see an additional tab marked «Developer» in the list of Excel 2019 menu options. Click this tab, and you’ll see the VBA button available on the left side.

Creating a Button on Your Spreadsheet

When you want to use VBA on your spreadsheet, buttons are one of the most common elements that you add to your document. With a button, you can trigger an event and use it to perform an action.

Components for VBA actions are found in the «Developer» tab in the «Insert» button dropdown.

(Form and ActiveX components for VBA)

When you click the «Insert» button, a dropdown displays all of the available components that you can add to your spreadsheets. The top-left control in the «Form Controls» section has the button control. You can hover your mouse over each of the components in the list to see what you can add to a spreadsheet. If you are familiar with HTML web page components, then you will recognize most of the available components in the dropdown.

Click the button control and then you can draw the button on your spreadsheet. Drawing a button lets you make it as large as small as you want. After you draw the button, a window opens where you can assign a macro.

(Assign macro window)

Click «OK» and the window closes. Now you see a button on your spreadsheet with the label «Button 1.» You can change the label on the newly created button by right-clicking the button and selecting «Edit Text.» This action prompts you for the new button name. Type a new name for your button. In this example, we’ve used the text «My Button» for the button text.

(A new button with custom text)

You can click the button if you want, and an error message with display telling you that you haven’t created a macro for it yet. This is because you haven’t created the code that will run when the button is clicked. The button serves no purpose, but you can create the macro that runs when it’s pushed, which then removes the error when you click the button.

Right click the button and choose «Assign Macro.» This action opens a Visual Basic for Applications workspace. The workspace is tied to the workbook that you have open, but you can make full applications that tie with your spreadsheet using VBA. In this workspace, you can create, test, and run any code that you assign to components in your application.

Working in the VBA Workspace

The VBA workspace looks the same whether you program macros in Word or Excel. It’s a workspace where you can program the macro and view all other code that you’ve previously created.

(VBA workspace)

The image above shows the VBA workspace. When you right click a component such as a button and choose «Edit Code,» VBA opens to the location where code is triggered when you click the button. VBA gives names to these functions that help you identify what happens should you perform an activity on it. Since a button is usually triggered by a click event, the function is given the original name of the button, an underscore, and then the word «Click.» For your first button created in your spreadsheet, the name for a click event is «Button1_Click()» and you add any code between the «Sub» and «End Sub» phrases.

The «Sub» keyword indicates that you are starting an event. The next part is the name of the event, and the last statement in a trigger event is the «End Sub» statement.

In the left panel of the workspace, you can see other objects in a tree view. The top object is always the workbook. If you recall, a workbook contains worksheet. Under the «Book1» main project header, you see «ThisWorkbook» which represents the workbook that you have opened, and the «Sheet1» represents the worksheet in the workbook. You can write VBA that works directly on a workbook or a worksheet activity such as when you open the workbook, a macro automatically runs.

The «Modules» section holds the files that you store containing VBA code. You can have several of these in your VBA code, or you can just have one file that contains all of the functions used to run macros.

Writing Some Simple VBA Code

With the VBA editor open, you now have a function ready to edit for your button. Anything you type in the «Sub» and «End Sub» statements will run when you click the Button1 component. When you start working with VBA, you want to create easy function statements so that you can follow what is going on as the code runs. In this example, we’ll add some text to a cell within the current spreadsheet.

Within the sub start and end phrases, type the following code:

Sub Button1_Click()

Range(«A1»).Value = «My Test»

End Sub

The code above tells Excel 2019 that you want to change the value contained in the cell «A1» in the current sheet to «My Test.» The «Range» indicates that you want to apply changes to a cell range set in the functions parameters. You can assign any value to a range, but in this example we apply text. Any formatting already set on the cell will also still apply, so if you have a cell set to bold text, then this value will have the bold format applied.

At the top of the VBA workspace, notice that there are three start, pause and stop buttons. You can use these buttons to test your new code. The «start» button will run the current function and apply changes to the spreadsheet, which in this example is changing content to «My Test.»

(The start button in the VBA workspace)

Click the start button and watch the text in the A1 cell change to «My Test.» Should you have a long list of statements within your function, you might want to pause the procedure. The stop button stops execution, so should you resume it then execution will start where it left off. With the pause button, execution resumes where the last statement left off.

The «MsgBox» function is extremely common in any application. The MsgBox function displays a warning or a message to the user. In any software application, you’ve seen pop-up windows that display a message that provides information. Even web applications display messages as pop-ups and warnings. The MsgBox function in VBA is the equivalent of all of these pop-ups that you’ve seen across different applications.

Suppose that you want to show a confirmation to the user that the button’s function completed execution. In this example, only one statement executes, but you might have hundreds of lines of code that must execute and you want to show the user that it’s completed. You might have a procedure that takes an unusual amount of time to complete, so users must wait for it to complete and then you display the message to confirm when the procedure is over.

Add the next line of code to the same VBA function Button1_Click():

Sub Button1_Click()

Range(«A1»).Value = «My Test»

MsgBox «Cell value change finished»

End Sub

In the code above, the cell A1 has its value changed to «My Test.» After the text is changed in the A1 cell, a message box opens and displays the text «Cell value change finished.» This is just a small example of how you can use the MsgBox function. After you finished changing your VBA code, click the play button again. You will see the two statements run, and the program will stop.

After you are finished writing your code, you still need to save it and test it within the spreadsheet. Your users won’t open the VBA workspace, so you need to make sure that the code executes outside of the VBA workspace.

Close the VBA workspace. You now need to assign the macro to the button. Right-click the button and click «Assign Macro.» Choose the Button1_Click value and click «OK.» Should you ever want to go back and change the statements executed by the macro. Use this screen to click the macro name, and then click «Edit» to again open the VBA workspace with the function code shown in the workspace window.

After the window closes, click the button. Notice that the text in cell A1 changes and then a window displays with a message that the procedure has completed. You’ve just created your first VBA macro that runs in your spreadsheet. You can create much more complex applications with VBA that run across several spreadsheets and can affect several other workbooks that aren’t even open on your desktop.

One issue to remember with VBA is that it’s a powerful tool that can do harm if it’s used the wrong way. Malware writers use VBA macros to download malicious software and install it on your computer. When you work with macros, your recipients of any spreadsheet must give your macros permission to run on their machines. Most users are trained not to open spreadsheets with macros, so they are mostly used within the same organization.

In this Article

  • Opening the Visual Basic Editor
    • To enable the Developer Ribbon
  • Understanding the VBE Screen
    • Inserting a module or form into your code
    • Removing a Module or Form from the Project Explorer
    • The Properties Window
    • The Code Window
  • Understanding the Code
    • Sub Procedures
    • Function Procedures
  • Creating a new Procedure
  • Writing Code that is easy to understand and navigate
    • Adding Comments
    • Indenting
    • UpperCase vs LowerCase
    • AutoComplete
  • Error trapping and Debugging
    • Syntax errors
    • Compilation Errors
    • Runtime Errors
    • Logical Errors
    • On Error Go To
    • On Error Resume Next

This tutorial will show you how to open and program in the Visual Basic Editor in VBA.

Opening the Visual Basic Editor

There are a few ways to access the Visual Basic Editor (VBE) in Excel.

Press Alt + F11 on your keyboard.

OR

Click View > Macros > View Macros. From here you can Edit an existing macro or Create a new one. Either option opens up the VB Editor.

vba vbe editor

OR

Developer > Visual Basic

Note: If you don’t see the Developer Ribbon, you’ll need to enable it.

To enable the Developer Ribbon

Click on the File tab in the Ribbon, and go down to Options. In the Customize Ribbon options, tick the Developer check box. This is switched off by default so you will need to switch it on to see the tab on the ribbon.

vba vbe developer

Click OK.

The Developer tab will appear on the main ribbon. Click on Visual Basic at the start of the ribbon to access the Visual Basic Editor.

vba vbe vbescreen

Understanding the VBE Screen

The VBE Screen is shown in the graphic below.

vba vbe vbeexplain

The Project Explorer

The Project Explorer enables you to see how the Project in which you are working is organized.  You can see how many modules and forms are stored in the project, and can navigate between these modules and forms. A module is where the code in your workbook is stored, when you record a macro, it will be stored in a standard module – which will by default be named ‘Module1’.

Each of the worksheets in your Excel file also has module behind it, as does the workbook itself.  When you insert a new sheet into the workbook via the main Excel screen, you will see an additional sheet module appear in the Project Explorer.

vba vbe sheetmodule

Double-click on a module to move to the code for that module.

vba vbe workbook module

You can also click on the Window menu on the toolbar and select the module there to move to the code for that module.

vba vbe insert window module

Type of Modules

The modules are organized into 5 different types.

  1. Standard modules – most of your code will go into this type of module. When you record a macro, it gets put into a standard module.    When you write a general procedure to be used throughout your workbook, it also normally goes into a standard module.
  2. Workbook modules – this module holds the code the is unique to that individual workbook. Most of the code in these type of modules are known as EVENTS.   An event can occur when a workbook is opened or closed for example. The module can also contain code that is written by yourself and used by the events.
  3. Sheet modules – this module holds the code that is unique to that individual sheet.  They can occur when a sheet is clicked on for example (the Click Event), or when you change data in a cell.  This module can also hold code that is written by yourself and called by the Events.
  4. Form modules – this is the module behind a custom form that you may create. For example you may create a form to hold details for an invoice, with an OK button, the code behind the button (the Click Event) contains the code that will run  when the button is clicked.
  5. Class modules – this module is used to create objects at run time. Class module are used by Advanced VBA programmers and will be covered at a later stage.

Inserting a module or form into your code

To insert a new module into your code, click on the Insert option on the menu bar, and click Module.

vba vbe insert module

Or, click on the Insert Module button which you will find on the standard ribbon.

vba vbe insert module ribbon

To insert a new user form into your code, select the UserForm option.

vba vbe insert userform

A new user form will appear in the Project Explorer and will be shown in the Code Window on the right.

vba vbe userform

You can also insert a Class Module

vba vbe insert classmodule

A class module is used to insert objects into your VBA project.

vba vbe insert classmodule2

Removing a Module or Form from the Project Explorer

Right-click on the module or form you wish to remove to show the right click short cut menu.

vba vbe delete userform

Click Remove (in this case UserForm1…)

OR

Click on the File menu, and then click on Remove (UserForm1).

vba vbe delete userform 1

A warning box will appear asking if you want to Export the form or module before you remove it.  Exporting the form or module enables you to save it as an individual file for use in a different Excel project at some other time.

vba vbe save userform

More often than not when you remove a module or form it is because you do not need it, so click No.

The Properties Window

You will see the properties window below the Project Explorer.  You may need to switch this on.

Press F4 or click View, Properties Window.

vba vbe properties

The properties window enables you to see the properties for the particular module or form that is selected in the Project Explorer.  When you are working in modules, you can use the properties window to change the name of the module.  This is the only property available to a module. However, when you are working with forms, there will be far more properties available and the Properties window is then used extensively to control the behavior of forms and the controls contained in the form.

When you record a macro, it is automatically put into a standard module.  The module will named ‘Module1’ and any code that is contained in that module is available to be used throughout your project.  You should rename your module to something that is significant, that would make your code easy to find if you were to add multiple modules to the project.

vba vbe properties window

You can also rename your forms.

vba vbe rename forms

If you have renamed your sheet in Excel, the name of the sheet will show up as the name of the sheet in brackets after Sheet1.

vba vbe sheet name

If you want to change the name of the module behind the sheet, you can change it in the same way you change the module and user form name – by changing the Name property in the Properties Window.

vba vbe sheet rename

VBA Coding Made Easy

Stop searching for VBA code online. Learn more about AutoMacro — A VBA Code Builder that allows beginners to code procedures from scratch with minimal coding knowledge and with many time-saving features for all users!

automacro

Learn More

The Code Window

The code window shows you the sub procedures and functions that are contained in your modules – it shows you the actual code.  When you record a macro, a sub procedure will be created for you.  If you add a short cut key to the macro, it will show up as a comment in the macro to let you know what the short cut key is that you assigned to the macro.

vba vbe code window

At the top of the code window are two combo boxes.  These allow you to see which object (if any) within the Module that you might be working on, and which Procedure you might be working on.

In the example above, we are not working on any object – thus this is set to general, but we are working within the Gridlines procedure.

If we had more than one procedure in this module, we could use the combo box above to navigate to the other procedures.

Understanding the Code

There are 2 types of procedures – Sub procedures and Function procedures.

Sub Procedures

The macro recorder can only record Sub procedures.  A Sub procedure does things.  They perform actions such as formatting a table or creating a pivot table, or in the gridline example, changing the view settings of your active window.  The majority of procedures written are Sub procedures.  All macros are Sub procedures.

A sub procedure begins with a Sub statement and ends with an End Sub statement.  The procedure name is always followed by parentheses.

Sub HideGridLines()
   ActiveWindow.DisplayGridlines  = False
End Sub

VBA Programming | Code Generator does work for you!

Function Procedures

A Function procedure returns a value.  This value may be a single value, an array, a range of cells or an object.  Functions usually perform some type of calculation.   Functions in Excel can be used with the Function Wizard or they can be called from Sub Procedures.

Function Kilos(pounds as Double)
  Kilos = (pounds/2.2)
End Function

 This function could be used within the Insert Function dialog box in Excel to convert Pounds to Kilograms.

vba vbe insert function excel

Creating a new Procedure

Before you create your new procedure, make sure you are in the module in which you wish to store the procedure.  You can create a new procedure by clicking on the Insert menu, Procedure;

vba vbe insert procedure

or you can click on the icon on the toolbar

vba vbe insert procedure 2

The following dialog box will appear

vba vbe add procedure

  1. Type the name of your new procedure in the name box – this must start with a letter of the alphabet and can contain letters and number and be a maximum of 64 characters.
  2. You can have a Sub procedure, a Function procedure or a Property procedure. (Properties are used in Class modules and set properties for ActiveX controls that you may have created).
  3. You can make the scope of the procedure either Public or Private. If the procedure is public (default), then it can be used by all the modules in the project while if the procedure is private, it will only be able to be used by this module.
  4. You can declare local variables in this procedure as Statics (this is to do with the Scope of the variable and makes a local procedure level variable public to the entire module). We will not use this option.

When you have filled in all the relevant details, click on OK.

vba vbe public sub proceduire

You then type your code between the Sub and End Sub statements.

ALTERNATIVELY – you can type the Sub and End Sub statements in your module exactly as it appears above.  You do not need to put the word Public in front of the word sub – if this word is omitted, all procedures in the module are automatically assumed to be Public.

Then you type Sub and then the name of your procedure followed by parenthesis.

ie:

Sub test()

The End Sub statement will appear automatically.

vba vbe sub procedure

Writing Code that is easy to understand and navigate

Get into the habit of putting in comments in your code in order to remind yourself at a later stage of the functionality of the code.

vba vbe code comment

You can insert a comment in your code but typing an apostrophe on the keyboard or you can switch on the Edit toolbar, and use the comment button which appears on that toolbar.

Right-click on the toolbars.

vba vbe show debug ribbon

Select Edit.

vba vbe debug ribbon

Click on the comment button to insert a comment into your code.

vba vbe comment block

NOTE: You usually only use the comment block button when you have a few lines of code you wish to comment out (and not delete).  It is easier for a single comment to use an apostrophe.

Indenting

A good habit to get into is to indent your code making it easy to read through the code and see the different parts of the code.

vba vbe indent

There can be many levels of indenting, depending on the logic of your code.

vba vbe indent 2

AutoMacro | Ultimate VBA Add-in | Click for Free Trial!

UpperCase vs LowerCase

VBA adjusts all code to Proper Case so if you type ALL IN UPPERCASE or all in lowercase it will Readjust Your Code To Be In Proper Case!

AutoComplete

When you adjust your code, you will notice that VBA tries to help you by suggesting the code that you can type.  This is known as AutoComplete.

vbba vbe code case

Error trapping and Debugging

There are 4 types of errors that can occur when you write VBA code – Syntax errors, Compilation errors, Runtime errors and Logical Errors.

Syntax errors

These occur when you write the code incorrectly.   This is largely prevented by VBA by having the Syntax check option switch on.  This is normally on by default but if your is switch off, then switch it on by going to Tools, Options and click Auto Syntax Check.

vba vbe options syntax

If you type the code incorrectly (for example excluding something that should be in the code), a message box will pop up while you are writing the code giving you the opportunity to amend the code.

vba vbe compile error

AutoMacro | Ultimate VBA Add-in | Click for Free Trial!

Compilation Errors

These occur when something is missing from the code that prevents the code from running.  The error does not come up when you write the code, but it occurs when you try and run the code.

vba vbe compile error 2

Runtime Errors

These occur when you run the code, and the syntax and compilation is correct, but something else occurs to prevent the code from running correctly.

vba vbe debug

In this case, Sheet4 does not exist.  This error message is more useful than the compile error messages as it gives you the opportunity to Debug the code and see why it is not working.

Click Debug. The code will stop at the error and highlight the error in yellow enabling you to correct your error.

vba vbe debug break

Amend Sheet4 to Sheet2 (as Sheet 2 exists and Sheet 4 does not exist).

vba vbe debug fix

Press F5 or click on the Continue button on the toolbar.

vba vbe f5

Logical Errors

These are the most difficult to find.  In their case, the code is written correctly but the actual logic of the code is flawed, so you may not get the result that you want from the code.  For logical errors, error trapping is essential.

There are 2 types of error traps

On Error Go To

The following code is to open the File Open Dialog box – it will give us an error if the user clicks Cancel.

vba vbe logical error 1

When you run the code the File Open dialog box appears.

vba vbe logical error 2

When you then click cancel, the error will occur.

vba vbe logical error 3

The following Error trap will continue the code to the Exit Function of the code, and return message.

This makes use of On Error GoTo to exit the function.

vba vbe logical error 4

When you run the code and click cancel, the message box will appear.

vba vbe logical error 5

On Error Resume Next

If you put the On Error Resume Next Statement into your code, the line that contains the error will be ignored and the code will continue.

For example, if the user clicks Cancel in the code below, the code will not give you a run-time error, it will just end without the code doing anything further.

vba vbe on error resume next

There are times when this is very useful but it can also be very dangerous in some circumstances as it does not return a message as to why you obtained an error.

The first step to working with VBA in Excel is to get yourself familiarized with the Visual Basic Editor (also called the VBA Editor or VB Editor).

In this tutorial, I will cover all there is to know about the VBA Editor and some useful options that you should know when coding in Excel VBA.

What is Visual Basic Editor in Excel?

Visual Basic Editor is a separate application that is a part of Excel and opens whenever you open an Excel workbook. By default, it’s hidden and to access it, you need to activate it.

VB Editor is the place where you keep the VB code.

There are multiple ways you get the code in the VB Editor:

  1. When you record a macro, it automatically creates a new module in the VB Editor and inserts the code in that module.
  2. You can manually type VB code in the VB editor.
  3. You can copy a code from some other workbook or from the internet and paste it in the VB Editor.

Opening the VB Editor

There are various ways to open the Visual Basic Editor in Excel:

  1. Using a Keyboard Shortcut (easiest and fastest)
  2. Using the Developer Tab.
  3. Using the Worksheet Tabs.

Let’s go through each of these quickly.

Keyboard Shortcut to Open the Visual Basic Editor

The easiest way to open the Visual Basic editor is to use the keyboard shortcut – ALT + F11 (hold the ALT key and press the F11 key).

Keyboard Shortcut to open Visual Basic Editor in Excel

As soon as you do this, it will open a separate window for the Visual Basic editor.

This shortcut works as a toggle, so when you use it again, it will take you back to the Excel application (without closing the VB Editor).

The shortcut for the Mac version is Opt + F11 or Fn + Opt + F11

Using the Developer Tab

To open the Visual Basic Editor from the ribbon:

  1. Click the Developer tab (if you don’t see a developer tab, read this on how to get it).
  2. In the Code group, click on Visual Basic.

Visual Basic Editor button in the ribbon

Using the Worksheet Tab

This is a less used method to open the Vb Editor.

Go to any of the worksheet tabs, right-click, and select ‘View Code’.

View code to open the VB Editor

This method wouldn’t just open the VB Editor, it will also take you to the code window for that worksheet object.

This is useful when you want to write code that works only for a specific worksheet. This is usually the case with worksheet events.

Anatomy of the Visual Basic Editor in Excel

When you open the VB Editor for the first time, it may look a bit overwhelming.

There are different options and sections that may seem completely new at first.

Also, it still has an old Excel 97 days look. While Excel has improved tremendously in design and usability over the years, the VB Editor has not seen any change in the way it looks.

In this section, I will take you through the different parts of the Visual Basic Editor application.

Note: When I started using VBA years ago, I was quite overwhelmed with all these new options and windows. But as you get used to working with VBA, you would get comfortable with most of these. And most of the time, you’ll not be required to use all the options, only a hand full.

Below is an image of the different components of the VB Editor. These are then described in detail in the below sections of this tutorial.

Different Parts of the VB Editor in Excel

Now let’s quickly go through each of these components and understand what it does:

Menu Bar

This is where you have all the options that you can use in the VB Editor. It is similar to the Excel ribbon where you have tabs and options with each tab.

You can explore the available options by clicking on each of the menu element.

You will notice that most of the options in VB Editor have keyboard shortcuts mentioned next to it. Once you get used to a few keyboard shortcuts, working with the VB Editor becomes really easy.

Tool Bar

By default, there is a toolbar in the VB Editor which has some useful options that you’re likely to need most often. This is just like the Quick Access Toolbar in Excel. It gives you quick access to some of the useful options.

You can customize it a little by removing or adding options to it (by clicking on the small downward pointing arrow at the end of the toolbar).

Add or Remove options in the toolbar

In most cases, the default toolbar is all you need when working with the VB Editor.

You can move the toolbar above the menu bar by clicking on the three gray dots (at the beginning of the toolbar) and dragging it above the menu bar.

Note: There are four toolbars in the VB Editor – Standard, Debug, Edit, and User form. What you see in the image above (which is also the default) is the standard toolbar. You can access other toolbars by going to the View option and hovering the cursor on the Toolbars option. You can add one or more toolbars to the VB Editor if you want.

Project Explorer

Project Explorer is a window on the left that shows all the objects currently open in Excel.

When you’re working with Excel, every workbook or add-in that is open is a project. And each of these projects can have a collection of objects in it.

For example, in the below image, the Project Explorer shows the two workbooks that are open (Book1 and Book2) and the objects in each workbook (worksheets, ThisWorkbook, and Module in Book1).

There is a plus icon to the left of objects that you can use to collapse the list of objects or expand and see the complete list of objects.

Project Explorer in Excel VBA Editor

The following objects can be a part of the Project Explorer:

  1. All open Workbooks – within each workbook (which is also called a project), you can have the following objects:
    • Worksheet object for each worksheet in the workbook
    • ThisWorkbook object which represents the workbook itself
    • Chartsheet object for each chart sheet (these are not as common as worksheets)
    • Modules – This is where the code that is generated with a macro recorder goes. You can also write or copy-paste VBA code here.
  2. All open Add-ins

Consider the Project Explorer as a place that outlines all the objects open in Excel at the given time.

The keyboard shortcut to open the Project Explorer is Control + R (hold the control key and then press R). To close it, simply click the close icon at the top right of the Project Explorer window.

Note: For every object in Project Explorer, there is a code window in which you can write the code (or copy and paste it from somewhere). The code window appears when you double click on the object.

Properties Window

Properties window is where you get to see the properties of the select object. If you don’t have the Properties window already, you can get it by using the keyboard shortcut F4 (or go to the View tab and click Properties window).

Properties window is a floating window which you can dock in the VB Editor. In the below example, I have docked it just below the Project Explorer.

Properties Window is docked below Project Explorer

Properties window allows us to change the properties of a selected object. For example, if I want to make a worksheet hidden (or very hidden), I can do that by changing the Visible Property of the selected worksheet object.

Changing the Visible Property of the Worksheet in Properties Window

Related: Hiding a Worksheet in Excel (that can not be un-hidden easily)

Code Window

There is a code window for each object that is listed in the Project Explorer. You can open the code window for an object by double-clicking on it in the Project Explorer area.

Code window is where you’ll write your code or copy paste a code from somewhere else.

When you record a macro, the code for it goes into the code window of a module. Excel automatically inserts a module to place the code in it when recording a macro.

Related: How to Run a Macro (VBA Code) in Excel.

Immediate Window

The Immediate window is mostly used when debugging code. One way I use the Immediate window is by using a Print.Debug statement within the code and then run the code.

It helps me to debug the code and determine where my code gets stuck. If I get the result of Print.Debug in the immediate window, I know the code worked at least till that line.

If you’re new to VBA coding, it may take you some time to be able to use the immediate window for debugging.

By default, the immediate window is not visible in the VB Editor. You can get it by using the keyboard shortcut Control + G (or can go to the View tab and click on ‘Immediate Window’).

Where to Add Code in the VB Editor

I hope you now have a basic understanding of what VB Editor is and what all parts it has.

In this section of this tutorial, I will show you where to add a VBA code in the Visual Basic Editor.

There are two places where you can add the VBA code in Excel:

  1. The code window for an object. These objects can be a workbook, worksheet, User Form, etc.
  2. The code window of a module.

Module Code Window Vs Object Code Window

Let me first quickly clear the difference between adding a code in a module vs adding a code in an object code window.

When you add a code to any of the objects, it’s dependent on some action of that object that will trigger that code. For example, if you want to unhide all the worksheets in a workbook as soon as you open that workbook, then the code would go in the ThisWorkbook object (which represents the workbook).

The trigger, in this case, is opening the workbook.

Similarly, if you want to protect a worksheet as soon as some other worksheet is activated, the code for that would go in the worksheet code window.

These triggers are called events and you can associate a code to be executed when an event occurs.

Related: Learn more about Events in VBA.

On the contrary, the code in the module needs to be executed either manually (or it can be called from other subroutines as well).

When you record a macro, Excel automatically creates a module and inserts the recorded macro code in it. Now if you have to run this code, you need to manually execute the macro.

Adding VBA Code in Module

While recording a macro automatically creates a module and inserts the code in it, there are some limitations when using a macro recorder. For example, it can not use loops or If Then Else conditions.

In such cases, it’s better to either copy and paste the code manually or write the code yourself.

A module can be used to hold the following types of VBA codes:

  1. Declarations: You can declare variables in a module. Declaring variables allows you to specify what type of data a variable can hold. You can declare a variable for a sub-routine only or for all sub-routines in the module (or all modules)
  2. Subroutines (Procedures): This is the code that has the steps you want VBA to perform.
  3. Function Procedures: This is a code that returns a single value and you can use it to create custom functions (also called User Defined Functions or UDFs in VBA)

By default, a module is not a part of the workbook. You need to insert it first before using it.

Adding a Module in the VB Editor

Below are the steps to add a module:

  1. Right-click on any object of the workbook (in which you want the module).Right click on any object
  2. Hover the cursor on the Insert option.
  3. Click on Module.Click on Module

This would instantly create a folder called Module and insert an object called Module 1. If you already have a module inserted, the above steps would insert another module.

Inserted Module in the VB Editor

Once the module is inserted, you can double click on the module object in the Project Explorer and it will open the code window for it.

Now you can copy-paste the code or write it yourself.

Removing the Module

Below are the steps to remove a module in Excel VBA:

  1. Right-click on the module that you want to remove.
  2. Click on Remove Module option.Remove Module for a Project in the VB Editor
  3. In the dialog box that opens, click on No.Prompt before a module is deleted

Note: You can export a module before removing it. It gets saved as a .bas file and you can import it in some other project. To export a module, right-click on the module and click on ‘Export file’.

Adding Code to the Object Code Window

To open the code window for an object, simply double-click on it.

When it opens, you can enter the code manually or copy-paste the code from other modules or from the internet.

Note that some of the objects allow you to choose the event for which you want to write the code.

For example, if you want to write a code for something to happen when selection is changed in the worksheet, you need to first select worksheets from the drop-down at the top left of the code window and then select the change event from the drop-down on the right.

Selection Change Event in VBA Code Window

Note: These events are specific to the object. When you open the code window for a workbook, you will see the events related to the workbook object. When you open the code window for a worksheet, you will see the events related to the worksheet object.

Customizing the VB Editor

While the default settings of the Visual Basic Editor are good enough for most users, it does allow you to further customize the interface and a few functionalities.

In this section of the tutorial, I will show you all the options you have when customizing the VB Editor.

To customize the VB Editor environment, click Tools in the menu bar and then click on Options.

This would open the Options dialog box which will give you all the customization options in the VB Editor. The ‘Options’ dialog box has four tabs (as shown below) that have various customizations options for the Visual Basic Editor.

Options to customize the Vb Editor

Let’s quickly go through each of these tabs and the important options in each.

Editor Tab

While the inbuilt settings work fine in most cases, let me still go through the options in this tab.

As you get more proficient working with VBA in Excel, you may want to customize the VB Editor using some of these options.

Auto Syntax Check

When working with VBA in Excel, as soon as you make a syntax error, you will be greeted by a pop-up dialog box (with some description about the error). Something as shown below:

Auto Syntax Check in Visual Basic Editor Options

If you disable this option, this pop-up box will not appear even when you make a syntax error. However, there would be a change in color in the code text to indicate that there is an error.

If you’re a beginner, I recommend you keep this option enabled. As you get more experienced with coding, you may start finding these pop-up boxes irritating, and then you can disable this option.

Require Variable Declaration

This is one option I recommend enabling.

When you’re working with VBA, you would be using variables to hold different data types and objects.

When you enable this option, it automatically inserts the ‘Option Explicit’ statement at the top of the code window. This forces you to declare all the variables that you’re using in your code. If you don’t declare a variable and try to execute the code, it will show an error (as shown below).

Varibale Not Declared Error in Excel VBA

In the above case, I used the variable Var, but I didn’t declare it. So when I try to run the code, it shows an error.

This option is quite useful when you have a lot of variables. It often helps me find misspelled variables names as they are considered as undeclared and an error is shown.

Note: When you enable this option, it does not impact the existing modules.

Auto List Member

This option is quite useful as it helps you get a list of properties of methods for an object.

For example, if I want to delete a worksheet (Sheet1), I need to use the line Sheet1.Delete.

While I am typing the code, as soon as I type the dot, it will show me all the methods and properties associated with the Worksheet object (as shown below).

Autolist Member Option in VB Editor

Auto list feature is great as it allows you to:

  • Quickly select the property and method from the list and saves time
  • Shows you all the properties and methods which you may not be aware of
  • Avoid making spelling errors

This option is enabled by default and I recommend keeping it that way.

Auto Quick Info Options

When you type a function in Excel worksheet, it shows you some information about the function – such as the arguments it takes.

Similarly, when you type a function in VBA, it shows you some information (as shown below). But for that to happen, you need to make sure the Auto Quick Info option is enabled (which it is by default).

Auto Quick Info Option in VB Editor

Auto Data Tips Options

When you’re going through your code line by line and place your cursor above a variable name, it will show you the value of the variable.

I find it quite useful when debugging the code or going through the code line by line which has loops in it.

Auto Data Tips Option in Visual Basic Editor Options

In the above example, as soon as I put the cursor over the variable (var), it shows the value it holds.

This option is enabled by default and I recommend you keep it that way.

Auto Indent

Since VBA codes can get long and messy, using indentation increases the readability of the code.

When writing code, you can indent using the tab key.

This option ensures that when you are done with the indented line and hit enter, the next line doesn’t start from the very beginning, but has the same indentation as the previous line.

Indentation enabled in the VB Editor code windows

In the above example, after I write the Debug.Print line and hit enter, it will start right below it (with the same indentation level).

I find this option useful and turning this off would mean manually indenting each line in a block of code that I want indented.

You can change the indentation value if you want. I keep it at the default value.

Drag and Drop Text Editing

When this option is enabled, it allows you to select a block of code and drag and drop it.

It saves time as you don’t have to first cut and then paste it. You can simply select and drag it.

This option is enabled by default and I recommend you keep it that way.

Default to Full Module View

When this option is enabled, you will be able to see all the procedures in a module in one single scrollable list.

If you disable this option, you will only be able to see one module at a time. You will have to make a selection of the module you want to see from the drop-down at the top right of the code window.

This option is enabled by default and I recommend keeping it that way.

One reason you may want to disable it when you have multiple procedures that are huge and scrolling across these is taking time, or when you have a lot of procedures and you want to quickly find it instead of wasting time in scrolling.

Procedure Separator

When this option is enabled, you will see a line (a kind of divider) between two procedures.

I find this useful as it visually shows when one procedure ends and the other one starts.

Procedure Separator Option in VB Editor

It’s enabled by default and I recommend keeping it that way.

Editor Format Tab

With the options in the Editor Format tab, you can customize the way your code looks in the code window.

Personally, I keep all the default options as I am fine with it. If you want, you can tweak this based on your preference.

To make a change, you need to first select an option in the Code Colors box. Once an option is selected, you can modify the foreground, background, and indicator color for it.

The font type and font size can also be set in this tab. It’s recommended to use a fixed-width font such as Courier New, as it makes the code more readable.

Note that the font type and size setting will remain the same for all code types (i.e., all the code types shown in the code color box).

Below is an image where I have selected Breakpoint, and I can change the formatting of it.

Editor Format Options in VB Editor

Note: The Margin Indicator Bar option when enabled shows a little margin bar to the left of the code. It’s helpful as it shows useful indicators when executing the code. In the above example, when you set a breakpoint, it will automatically show a red dot to the left of the line in the margin bar. Alternatively, to set a breakpoint, you can simply click on the margin bar on the left of the code line that you want as the breakpoint.

By default, Margin Indicator Bar is enabled and I recommend keeping it that way.

One of my VBA course students found this customization options useful and she was color blind. Using the options here, she was able to set the color and formats that made it easy for her to work with VBA.

General Tab

The General tab has many options but you don’t need to change any of it.

I recommend you keep all the options as is.

One important option to know about in this tab is Error Handling.

By default, ‘Break on Unhandled Errors’ is selected and I recommend keeping it that way.

This option means that if your code encounters an error, and you have not handled that error in your code already, then it will break and stop. But if you have addressed the error (such as by using On Error Resume Next or On Error Goto options), then it will not break (as the errors are not unhandled).

Docking Tab

In this tab, you can specify which windows you want to get docked.

Docking means that you can fix the position of a window (such as project explorer or the Properties window) so that it doesn’t float around and you can view all the different windows at the same time.

If you don’t dock, you will be able to view one window at a time in full-screen mode and will have to switch to the other one.

I recommend keeping the default settings.

Other Excel tutorials you may like:

  • How to Remove Macros From an Excel Workbook
  • Comments in Excel VBA (Add, Remove, Block Commenting)
  • Using Active Cell in VBA in Excel (Examples)

Here’s a reader question:

I have a co-worker that is using Excel VBA Macros to analyze a bunch of data. Can you explain how Macros work, and probably suggest a way for me to pick that skill up? Any simple tips for beginners are very much appreciated.

Introduction to Excel 365 Macros

Mastering Macro development is probably one of the most important skills required to become a power Excel user. In essence, we use VBA Macros in order to automate tasks in Excel (also in Word, Macros are pretty useful) that would have been otherwise mundane, boring and very time consuming.

Here are a few examples of tasks which we are able to automate with Macros in Excel:

  1. Creating and manipulating workbooks and worksheets.
  2. Creating and manipulating charts
  3. Import data from files or other systems.
  4. Analyze data and create/refresh charts and dashboards
  5. Customize forms to capture feedback
  6. Send emails
  7. And much more…

Due to the fact that Excel ships with a built in Macro recorder (unlike Outlook and PowerPoint), there are two main options for adding a macro to an Excel workbook:

1) Record a sequence of user actions which is probably easy to get started with, but doesn’t scale up for complex tasks which might involve interaction with another Office applications or manipulating bigger data subsets.

2) Write your Macros by leveraging Visual Basic for Applications (VBA). This is a relatively simple procedural language that allows you to quickly develop more complex automation.

In this post, we’ll be covering both cases. We’ll start by showing you how to record your macro and continue by providing a detailed procedure for inserting VBA macros to spreadsheets.

We’ll demo both options using a very simple task:

  1. We’ll automate the addition a worksheet name “DEMO” to an existing workbook.
  2. Then, we will then copy a table range from Worksheet Sheet1 into the DEMO worksheet.

Record Excel 365 / 2019 Macros

Proceed as following to record a macro in Excel:

  • In Excel, open an existing workbook or create a brand new one.
  • Navigate to the View tab in the upper Ribbon.
  • In the Right hand side, you’ll notice the Macro section.
  • Hit View and select Record Macro.
  • The form below will open up. Now provide a name to your Macro and store its content into the existing workbook. You might notice that here you can easily assign a key shortcut so you can more easily run the Macro.

Tip: Make sure to enter a detailed description to your Macro.

Record_Macro
  • Now, hit OK.
  • At this point, go ahead and manually perform the steps you would like to record – in our case i will go ahead and manually create the new spreadsheet, rename it and then copy the table from Sheet1.
  • Once done, hit Macros again and select Stop Recording.
  • If you now hit Macros and then select View Macros, you’ll see a list of all Macros stored in all open workbooks (or specific ones)
  • If you hit the Edit button, the Microsoft VBA Editor will open.
  • The VBA editor shows the code that Excel has just generated for you in the background. In the next section of this tutorial i will show you how you can write a similar piece of code on your own.
Macro_VBA_Code_Outlook_2019
  • Close the VBA Editor.

Saving your Macro enabled file

Now we’ll need to save the workbook. As it contains a Macro, we should save it as a XSLM file (Macro Enabled Excel File)

  • Hit File, then Save
  • Select a location in your Computer or OneDrive in which you’ll save your file.
  • Provide it a descriptive name
  • Select .xslm as the File Type.
  • Hit OK.
  • Nice job, you have just recorded a simple macro!

Create Excel VBA Macros

As we previously mentioned, in many instances, the Excel Macro recorder will fall short and won’t meet all your needs. In these cases, you’ll need to write your own code.

Tip: There are cases that you might want to use an hybrid approach to Macro creation. You could start by recording your Macro and then just make manual adjustments to the auto-generated code with VBA.

Setting up the Excel development environment

This one sounds pretty fancy, but is actually quite simple. If you don’t see a tab named Developer in your Ribbon, start by enabling the Developer tab.

After the Developer tab is made visible, your Ribbon will look as following:

Developer_tab_enabled

Writing your VBA macro

  • Open your Excel file.
  • From the Ribbon, hit Developer.
  • Now hit the Visual Basic button  (Alternatively, hit Alt+F11).
  • GO to Module1 and paste the following code:
Sub Write_Macro()
'This code creates a Macro named Write_Macro
Dim MySheet As New Worksheet
Dim MyTable As Range

' Create a worksheet programatically and call it TEST
Set MySheet = ThisWorkbook.Sheets.Add(After:=Sheets(Sheets.Count))
MySheet.Name = "TEST"

'Copy the table from Sheet1 into TEST worksheet
Set MyTable = Sheet1.Range("A1:C11")

With MyTable
.Copy Sheets("TEST").Range("A1")
End With

End Sub
  • Close your VBA Editor.
  • Back in Excel, hit Developer.
  • Now hit on Macro and look into the list of Macros in your Workbook. You’ll notice the Write_Macro entry, which we just write on our own.
View_Macro_Excel_2019
  • Save your spreadsheet as a .xslm (Macro enabled Excel file)

Running your Macro

Executing your macro is very simple: From the Macro Dialog shown above, highlight your Write_Macro entry and hit Run.

Enabling VBA security permissions

In Microsoft Office, Macros are disabled by default, in order to avoid running harmful code. If you would like to run your Macros you’ll need to allow that. Execute this optional step in case you have received an error message when running either of the two macros we have created above.

  • Hit Developer in the Ribbon.
  • Select Macro security.
  • Select the Disable all Macros with notification option.
  • Hit OK.

Note: Disable all Macros with notification is the recommended security setting for Excel workbooks that contains Macros. It works as following: when a user opens such a workbook, Excel posts a “MACROS has been Disabled” notification right beyond the formula bar. It is then up to the user decision to enable the macros in the workbook.

  • Статьи

Как включить макросы (разрешить использование макросов) в Excel 2019:

1) На ленте нажмите пункт меню «Файл», а потом в открывшемся меню — кнопку «Параметры»:

Параметры Excel 2013

2) В открывшемся окне «Параметры Excel» в левом столбце выделите пункт «Центр управления безопасностью»,
после чего справа (в том же окне) — нажмите кнопку «Параметры центра управления безопасностью»:

Центр управления безопасностью в Excel 2007 и 2010

3) В открывшемся окне «Центр управления безопасностью» выделите пункт «Параметры макросов»,
и справа отметьте опцию «Включить все макросы»: 

Центр управления безопасностью в Excel 2007 и 2010 - параметры макросов

4) Перезапустите Excel (полностью его закрыв, и открыв снова), чтобы изменения настроек вступили в силу.

ВАЖНО: После того, как в настройках Excel вы включили макросы (установили низкий уровень безопасности),
необходимо полностью закрыть Excel, и запустить его заново, — только после этого настройки применятся.

  • 13027 просмотров

Excel VBA is a powerful tool which enables the automation of tasks in Excel. It can be used to automate many repetitive tasks along with more complex applications. This quick tip guide shows you how to open the Excel Visual Basic Editor (aka Excel VBA Editor) and get started with VBA programming in Excel. Having access to the VBA editor lets you write your own VBA code or review recorded macros. Read on to see How to Open and Start Using the MS Excel VBA Editor

Excel VBA - Project Manager

Excel VBA - Visual Basic Editor

To open Excel visual basic editor,

Click the visual basic button on the developer tab.

If the Developer tab is not present, go to File -> Options -> customize ribbon and tick Developer.

You can also open VBA in Excel using Alt + F11 keyboard shortcut.

What is the VBA Editor

Great, now you’re in the editor, what is it? Microsoft Excel’s Visual basic editor can be referred to as, VBA editor, VB editor and even VBE. It is all the same thing. It’s the place where you can create macros and write scripts in Excel VBA.

The most basic sections of the editor is the Project View in which you can see modules listed down the left hand side. Think of this like a folder for your macros. Modules contain the code that is required for your macros to work. Its beyond the scope of this article to go into how to split out your code into objects but modules gives the user a powerful tool to create efficient and well organized code.

Excel VBA - Modules

To get started writing code you will need to create a new module. Add a new module in VBA editor by clicking on VBAProject(Book1), right click, Insert Model. Delete a module by simply right clicking, Remove Module. Excel will prompt you to confirm before deleting.

Excel VBA Editor - New Module

Record a Macro in Excel

Recording a macro in Excel is a great way to automate tasks as well as a great tool to help learn more VBA code. A common trick is to record a macro and then review the VBA code to see how it works. Now you know how to open the VBA editor in Excel you should be able to record a macro, open the editor and view the code. You’ll see the system generated VBA can be messy but it will give you the key snippets of code needed for the desired action. These can be things as simple as formatting, copying, pasting, deleting or selecting a sell. Alternatively, you could get quite advanced and carry out entire tasks before going into the Excel visual basic editor to review the code.

The world really is your oyster when you get started recording macros in excel. Top tip is to start with small steps. You can always bulk all your small macros into one at a later stage but when it comes to reviewing each step its useful to keep it separate, at least when you are first getting started.

Excel VBA Editor - Record Macro

 Run a Macro in Excel VBA Editor

Once you have entered the VBA editor, created a module and written some code you will want to run the code.

To run VBA code in VBA editor simply click the Run Macro button which is shaped like a small green triangle on the toolbar. You can also Run Macro in Excel VBA editor by pressing F5 shortcut.

Excel VBA Editor - Run Macro (F5)

This is a very quick introduction to show you how to open VBA in excel, create a new module and also run your macro once written. To write some actual code, as we have suggested above, a great tip is to record macros and then go back and review the code in the MS Excel VBA editor. You’ll be surprised how messy the generated VBA can get but it will give you the key snippets of VBA code you need to get started with Excel VBA programming and is a great way of learning the syntax of VBA. Alternatively, Google is your best friend when it comes to writing macros. So what are you waiting for, press Alt + F11 in Excel and get coding in VBA!

What to do next? REad our quick Introduction to VBA for MS Excel

Written by Puneet for Excel 2007, Excel 2010, Excel 2013, Excel 2016, Excel 2019, Excel for Mac

KEY POINTS

  • Visual Basic Editor is a code editor for VBA.
  • It’s a separate application but you can only use it with Excel.
  • You need to have the developer tab on the ribbon to access it.
  • You can also use the keyboard shortcut (Alt + F11).
  • It also stores the macros that you recode with the macro recorder.
  • It has multiple tools to help you to write and manage all the codes.

The world of VBA starts with the Visual Basic Editor (VBE).

It’s the place where you write and manage all the macro codes and if you ask me about VBE, I’d say if you are serious about learning VBA you need to understand all the components of VBE.

That’s why it’s part of our VBA tutorial and in this guide, we have covered every single aspect of Visual Basic Editor to make you understand its functionality.

So, let’s get started.

I will be using different words (VBA editor, VB editor, or VBE) in this guide for referring to the Visual Basic Editor, so don’t be confused with it.

What is the Visual Basic Editor?

Visual Basic Editor is an application (a separate one) in which you can write and save all the VBA codes. In simple words, it’s a code editor for Excel in which you can write all the macros and store them. Even though it is a separate application (VB Editor) you can only use it with Excel.

Yes, that’s right. You can’t run VBE separately; there must be an Excel workbook open for using VBE.

Visual Basic Editor is the only way to write a VBA code in Excel. In fact, all Microsoft applications that host VBA use the Visual Basic Editor for script writing (writing code).

Below is the VBE:

Microsoft Windows

A screenshot of a social media post

Description automatically generated

Mac

VBA is one of the ADVANCED EXCEL SKILLS and to master the VBA; you need to learn all the aspects of Visual Basic Editor.

Open the Visual Basic Editor

From the developer tab

To open the visual basic editor, you need to have the developer tab on the ribbon and to activate the developer tab (steps to add).

A screenshot of a cell phone

Description automatically generated

Now on the developer tab, in the code group, there is a button called “Visual Basic” and when you click on this button it opens the VB editor.

A picture containing clock

Description automatically generated

Shortcut Key (Window)

You can also use the keyboard shortcut key Alt + F11 to open the VBE in windows and Opt + F11 or Fn + Opt + F11 for MAC.

Even if you don’t have the developer tab on the ribbon, this shortcut key will still work and open the editor.

Edit a Macro from the List

If you want to open the VBA editor to edit a specific macro, then you can open the macros list from the developer tab.

A screenshot of a cell phone

Description automatically generated

And click on the edit button to open the VB editor to edit that specific macro.

A screenshot of a cell phone

Description automatically generated

On Quick Access Toolbar

You can also add a button on the quick access toolbar to open the VBA editor. For this, you need to click on the drop-down on the quick access toolbar and open more commands.

A screenshot of a cell phone

Description automatically generated

And then select the developer tab from “Choose Commands From” and then add the visual basic editor to the quick access toolbar by clicking on the add button.

A screenshot of a cell phone

Description automatically generated

Now you can open the visual basic editor from the button that you have on the QAT.

A picture containing clock

Description automatically generated

From the Worksheet Tab

You can also open the VBA editor by right-clicking on the worksheet tab and clicking on the view code. It will instantly take you to the code window of that worksheet.

A screenshot of a cell phone screen with text

Description automatically generated

Components of Visual Basic Editor

When you open the VBA editor first time it looks like an old application and to understand how it works you need to go component by component.

The user interface is the same (almost) for all the Excel versions in the last more than 15 years, so no matter which Excel version you are using, you can learn about Visual Basic Editor from this guide. Yes, VBE has different components which can help you in different ways, so let’s explore them one by one.

  1. Menu Bar
  2. Tool Bar
  3. Project Window
  4. Properties Window
  5. Code Window
  6. Immediate Window
  7. Watch Window
  8. Object Browser
  9. Find and Replace
  10. Locals Window

Just like any other application VBA editor has a menu bar where you can find all the options that are available to the user.

Now in the menu bar, each tab is a category of options that are available to use. Let’s suppose, in the edit menu, you can see all the options from cut-copy-paste, find and replace, and adding indent and outdent. 

A screenshot of a computer

Description automatically generated

Along with all the options (most of them), you can find the shortcut keys to use those options.

2. Tool Bar

Just below the menu bar, you have the toolbar which is a collection of some of the options that a normal user needs to use more frequently. When you open the visual basic editor first time you will only have the standard toolbar, just like the image below.

But there are total four toolbars that you can add and use.

  1. Debug
  2. Edit
  3. Standard
  4. User Form

If you go to the view tab in the menu bar you have the option to add or remove these toolbars.

A screenshot of a cell phone

Description automatically generated

And you can also add or remove buttons from the toolbar if you want.

A screenshot of a cell phone

Description automatically generated

You can also move a toolbar just by dragging and dropping from the small dots on the right side.

3. Project Window/ Project Explorer

The project window is the place where you can see all the ongoing projects. Whenever you open a file and then open the visual basic editor you can see the hierarchy of that file in the project window.

A screenshot of a cell phone

Description automatically generated

Every project further has a collection of objects:

  • Worksheet: Each worksheet in a workbook lists as an object.
  • The Workbook: It represents the workbook itself as an object.
  • Module: It’s the place where you write code or recorded macros stores.
  • Chart Sheet: Chart sheet in the workbook will also be listed there.

When you open the VB editor, you’ll find the project window there by default. But if it’s not there somehow you can add it from the View (Menu Bar) or you can use the shortcut key Control + R.

Each object that is listed on the project window has its own code window which you can open by double click on it or you can right-click and select the view code option.

A screenshot of a cell phone

Description automatically generated

The project window is the best way to navigate through all the ongoing projects and when you start working with the editor you will get to know more about it.

4. Properties Window

As the name suggests the properties window gives you access to the properties of the selected object. Each object, for example, a worksheet has its own properties that you can see and make changes in it.

A screenshot of a cell phone

Description automatically generated

For each property, there is a drop-down on the right side from where you can change or edit that property.

A screenshot of a cell phone

Description automatically generated

Quick Tip: You can change the name of a project from the properties window.

A screenshot of a cell phone

Description automatically generated

And, if the properties window is not there by default you can activate it from the view (menu bar), or you can also use the shortcut key F4.

A screenshot of a cell phone

Description automatically generated

5. Code Window

The code window is the place where you write codes and do most of your work (editing, writing, and testing). In simple words, the code window is the place where you do all the programming.

A screenshot of a social media post

Description automatically generated

When you first see it, it looks like a simple text editor, but it has Intellisense that can help you while programming.

There is no way I have found to add line number in the code window as other code editors have but still, VB editor indicates you the line number of the code.

Note

There’s no way I have found to add line number in the code window as other code editors have but still, VB editor indicates you the line number of the code.

6. Immediate Window

Immediate Window is the place where you can debug your code. You can type a line of code and test how it works. Let’s say if you want to test the following code:

Range("A1").Value = 9999

All you need to do is enter type a question mark and then paste the code there and HIT enter. It will immediately show the result of the code.

A screenshot of a cell phone

Description automatically generated

The other way is to add Debug.Print before the code and get its result value in the immediate window.

Sub Macro1()
Debug.Print Range("A1").Value = "Yes"
End Sub

By default, the immediate window won’t be there when you open the visual basic editor, so you need to activate it from the view tab in the menu bar. You can also use the shortcut key Control + G.

7. Watch Window

Just like Excel Watch Window, the visual basic editor also has a watch window where you can add expressions to track them. You simply need to select the expression and then right-click and go to add a watch.

A screenshot of a cell phone

Description automatically generated

In the below example, I have added the Selection.Value to the add watch.

A screenshot of a cell phone

Description automatically generated

Now, to activate the watch window, go to the view menu and click on the watch window option.

A screenshot of a cell phone

Description automatically generated

And here you have the watch window tracking the added expression.

A screenshot of a social media post

Description automatically generated

8. Object Browser

VBA has its own object browser which can help you to work with all the objects by finding all the properties and which you can use.

A screenshot of a cell phone

Description automatically generated

Imagine if you want to use the range object, the object browser will tell you about all the properties and method that comes with it. Look at the below example.

A screenshot of a cell phone

Description automatically generated

To open the object browser, use the shortcut key F2 or you can also go to the view tab and click on the object browser to open it.

9. Find and Replace

Just like the find and replace in Excel, the VBA editor has its own find and replace option that you can use to find and replace values from procedures. To open the FIND option, you can use the shortcut key Control + F, and to open the replace you can use the shortcut key Control + H.

A screenshot of a cell phone

Description automatically generated

Otherwise, you can open both options from the edit menu.

A screenshot of a cell phone

Description automatically generated

The find and replace option in VBE gives you different search patterns, like, if you want to find and replace something from the current procedure, from the current module, or from the current project.

You can also use the CASE SENSITIVE search and decide the direction of the search as well.

10. Locals Window

You can use the Locals window in VBE to displays all declared variables in the current procedure and their present values.

Using VB Editor to Write a Code

At this point, you know all the major components of the VBA editor, so now let’s learn how to add code in it.

Module Code Window Vs Object Code Window

There are two different types of code windows and both look just the same but there is a difference that you need to know.

  1. Module Code Window: Code in the normal module can be executed manually or you can also call it from a separate procedure.
  2. Object Code Window: Code in the object code window can be executed by using an event. Let’s suppose you want to run code when you double click on a cell, in that case, you need to use the double click event and you need to add code to that worksheet.

2. Module Code Window

You will be writing most of the VBA code in a module. To add code in a module you need to use the SUB procedure or the FUNCTION procedure.

  • Sub procedure
  • Function procedure

The difference between a sub and a function procedure is sub procedure can’t return a value, on the other hand, a function procedure can return a value.

When you record a macro that code goes straight into a module that VBA inserts automatically when you use the macro recorder.

Insert a Module

When you need to write code, you have to insert a module and for this, you simply need to go to the project window and right-click on the project name, and from that menu go to insert and select module.

A screenshot of a cell phone

Description automatically generated

Remove a Module

You can also remove a module if it doesn’t require anymore so you just simply need to right-click on the module and select remove.

A screenshot of a cell phone

Description automatically generated

And when you click on remove, it asks you if you want to back up that module before removing it. There is also an option where you can export a module to save it as a file in your system.

3. Object Code Window

Open the code window for the object you simply need to double click on it and in its the code window, there is a dropdown from where you can select the event that you want to use to execute the code.

A screenshot of a social media post

Description automatically generated

Imagine if you want to write the code and want to execute on the double click then you need to select “BeforeDoubleClick” from the dropdown.

Understanding Design Mode, Run Mode, and Debug Mode

You can use the visual basic editor in three different modes depending on the face of programming, writing the code, locating an error, and fixing an error.

  • Design Mode: Normally, when you are working in VB editor on a code you are in the design mode. Even then you just writing the code instead of designing a user form or a form you are in the design mode, like typing a code. This is also called design time.
  • Run Mode: When you run a code to test a code that is how it works you are in the run mode. The best example to define this mode is when you execute a code using the Run button from the toolbar. This is also called runtime.
  • Break Mode: When a code is running and in between the execution is suspended, at that time you are in break mode. In this mode, you can run a code step by step. This is also called debugging.

Tips to work with VB editor like a PRO

Just like any other programming language in VBA you can also use comments to define how that code works. Using comments is a good habit and it can help you in so many ways.

  • Track Changes
  • Contact Details of the Programmer
  • How to Troubleshoot the Code
  • And much more

To add a comment, you need to type an apostrophe and then the line of code.

Related Tip: VBA Comment Block

Quick Info

Now, look at the below example where I am adding add a VBA function (VBA LEFT Function), and the moment I type the name of the function, it shows me a tooltip for all the arguments which I need to define.

A screenshot of a cell phone

Description automatically generated

You can also use the shortcut key Control + I or use the quick info option from the EDIT menu.

A screen shot of a smart phone

Description automatically generated

Auto List Members

Each object in VBA comes with some properties and methods and when you insert an object or a command in the code window and then you enter (.) it shows you the complete list of properties and methods which come with that object.

A screenshot of a cell phone

Description automatically generated

In the above example, when I added a (.) after the borders property of the range, it showed me all the available properties that are available to access.

List Constants

While defining expressions for a property or a method you can use the list of constants available. In the below example, while using the Border Around method it showed me all the constants which are available for the weight argument.

A screenshot of a cell phone

Description automatically generated

You can use the shortcut key Control + Shift + J to get the list of constants or you can also go to the edit menu and use the option from there.

A screenshot of a cell phone

Description automatically generated

Activate Option Explicit

While writing VBA codes you will need to use variables and one of the most important things while using variables is to declare their data type. And there’s a chance that you could forget to declare it.

But when you use the option explicit statement, then you have to declare the data type for every single variable which you are using, and if you fail to do so VBA will show an error message. It’s like forcing yourself to declare every single variable with its data type. For this, you can go to the tools menu and open the options.

And from the options, tick mark “Require Variable Declaration” and click OK.

A screenshot of a cell phone

Description automatically generated

Now every module will have an Option Explicit statement at the beginning, and you have to declare every single variable.

A screenshot of a cell phone

Description automatically generated

Change the Code Window View

When you can write multiple codes in a single code window and VBA separate them with a divider, but if you want to have a more focused view, you can change the view of the code window. Below I have the codes in a single module.

A screenshot of a cell phone

Description automatically generated

But I can change this view from the view buttons from the bottom left of the window.

A screenshot of a cell phone

Description automatically generated

Now I have only active code visible.

Run a Code Step by Step

When you write a VBA code there could be a chance that that code has a bug or an error that can come while executing it. In that case, the best way is to execute that code step by step and validate each line of code.

A screenshot of a cell phone

Description automatically generated

For this, you can use shortcut key F8 to execute a code line by line or use step into option from the debug menu.

A screenshot of a cell phone

Description automatically generated

And there is also a button on the debug toolbar that you can use.

A screenshot of a cell phone

Description automatically generated

Code Indenting

When you write lengthy and complex codes then it’s important to structure them in the right way so that you can understand them later. For this, there’s one thing which comes handy, INDENTING. Indenting is basically structuring the code using tabs, below is an example.

A screenshot of a cell phone

Description automatically generated

To add indenting in a line you can use the TAB key from the keyboard, or you can also use the indent/outdent buttons from the toolbar.

A screenshot of a cell phone

Description automatically generated

Get Code from a Text File

The visual basic editor allows you to import VBA codes from a text file without copy-pasting. Once you insert a module you can go to the insert menu and select the file option from there.

A screenshot of a cell phone

Description automatically generated

It opens the dialog box where you can locate the text file and import all the codes from it to the current module.

R1C1 Reference Style

If you ever worked with the R1C1 reference style, then I’m sure you can agree on this point that way easier to write codes with it.

R1C1 Reference Style

Line Break

Even though you can adjust the width of the code window and make it wide but there could be a situation when you will be dealing with long lines of code that makes it hard to read.

The best way to deal with this problem is to add a line break. Basically, a line break is something when you break a line into two lines using the line break character.

Use a SPACE & UNDERSCORE and hit enter to add a line break.

A picture containing room, orange, holding, black

Description automatically generated

Formatting

When it comes to user interface visual basic editor is not that good looking. But there are few formatting options that you can use to customize it or change its look the way you want.

From the Tools Menu Options Editor Format, you can access the formatting option where you can change the font style size or background color as well

A screenshot of a social media post

Description automatically generated

Check out this video on customizing the VBA editor for a dark theme.

Personal Macro Workbook

There could be some macros that you need to access within all the workbooks that you use.

In that case, you can use the Personal Macro Workbook that can help you to store all the important codes in one place and you can access them from all the workbooks.

A screenshot of a cell phone

Description automatically generated

Using Bookmarks

The visual basic editor allows you to add bookmarks to a line from Right Click Toggle Bookmark.

A screenshot of a cell phone

Description automatically generated

And then you can also navigate between bookmarks from the option from the edit menu.

A screenshot of a cell phone

Description automatically generated

Syntax Checking

When you write codes in the code window VBA check for the syntax error and notify you when you make a syntax error. This option is activated by default, but you can also turn it off if you don’t want VBA to notify you every time you make an error.

Tools Menu ➤ Options ➤ Editor Tab ➤ Auto Syntax Check.

A screenshot of a cell phone

Description automatically generated

But I would recommend you not to deactivate it because it can help you to identify all the syntax errors that you make while writing codes.

List of Macros

If you have a lot of macros in a module, there is an option that you can use to see all the macros (Tools ➤ Macro).

A screenshot of a cell phone

Description automatically generated

There’s one big benefit of using this list option is that you can run a macro, delete it, and edit it without navigating to that procedure.

Locking a Project with a Password

Visual Basic Editor also gives you an option to lock a module with a password. So, if you don’t want the users to know the code and don’t want them to make a change in the code, you can use this option.

A screenshot of a cell phone

Description automatically generated

Tools Menu ➤ VBAProject Properties ➤ Protection Tab

A screenshot of a cell phone

Description automatically generated

Important Shortcut Keys

  • Shift + F7: Object browser.
  • F5: Run macro.
  • Tab: Add an indent.
  • Alt + Q: Close.
  • F8: Step into.
  • Control + H: Find and replace.
  • Control + G: Immediate Window.
  • Control + R: Project Explorer.
  • F4: Properties window.

Learn some AMAZING Keyboard Shortcuts: Excel Keyboard Shortcuts Cheat Sheet

Alternative to Visual Basic Editor

Well, I have tried quite a few other editors to write a macro but the problem which I have found is that without the Intellisense it’s really hard to use anything other than the visual basic editor itself.

VBA editor works along with Excel, you can test your codes instantly and you can save them into the workbook. But are a few names to try.

Visual Studio Code | Ultra Edit

Points to Remember

  • You can maximize or minimize the code window.
  • You can change a project’s name anytime.
  • The project window is the best way to navigate through the editor.
  • It will make a line red if there’s an error in it while writing the code.
  • You can also add a bookmark to a line of code from the Right-Click Menu Toggle Bookmark.
  • You cannot use the visual basic editor without opening an Excel workbook.

More on VBA

  • VBA Functions
  • VBA to Add a New Sheet
  • VBA Code to Activate a Worksheet
  • VBA IF Then Statement
  • VBA User Defined Function
  • VBA Message Box
  • VBA to Extract Hyperlink
  • Macro to Highlight Duplicate Values
  • VBA to Create a Pivot Table

[icon name=”bell” class=”” unprefixed_class=””] VBA is one of the Advanced Excel Skills

Should I need to install the Visual Basic Editor?

No. You don’t need to install the visual basic editor. It comes pre-installed with the Microsoft Office applications.

What if I don’t have the Developer Tab on the Ribbon?

If you don’t have the developer tab on the Excel ribbon, you can activate it from the Excel ribbon.

Is there an alternative to the Visual Basic Editor?

Not really. The IntelliSense that you have in the VBE makes it perfect to use to write VBA codes.

Содержание

  1. Как включить vba в excel 2019
  2. Как включить VBA в Excel 2019?
  3. Как включить макросы в Excel 2020?
  4. Как открыть редактор VBA в Excel?
  5. Как включить VBA в Excel 2016?
  6. Как запустить макрос в Excel 2016?
  7. Что такое с поддержкой макросов?
  8. Как включить личную книгу макросов?
  9. Как запустить Visual Basic?
  10. Как включить вкладку VBA Excel?
  11. Как установить VBA?
  12. Как включить режим конструктора в Excel 2016?
  13. Как включить VBA в Excel 2013?
  14. Как поставить макрос в Excel?
  15. Как добавить макрос в Excel?
  16. Как запустить макрос при открытии книги Excel?
  17. Как включить VBA в Excel?
  18. Как открыть редактор VBA в Excel?
  19. Как включить макросы в Excel 2020?
  20. Как включить VBA в Excel 2016?
  21. Как включить VBA в Excel 2007?
  22. Как запустить Visual Basic?
  23. Как включить VBA в Excel 2013?
  24. Что такое с поддержкой макросов?
  25. Где хранятся макросы в Excel?
  26. Как открыть VBA в Excel 2019?
  27. Как установить VBA?
  28. Как включить режим конструктора в Excel 2016?
  29. Как включить макросы в Excel 2019
  30. Как включить макросы в Excel, Word, Power Point, open office?
  31. Как включить макросы в Excel 2013-2019?
  32. Активируем макросы в Microsoft Word 2013-2019
  33. Включаем макросы в Microsoft Power Point
  34. Можно ли включить макросы в Open Office, Libre и им подобных?
  35. Как включать макросы в пакете Microsoft Office, Open Office видео
  36. Как открыть vba в excel 2019
  37. Как открыть VBA в Excel 2019?
  38. Как перейти в VBA в Excel?
  39. Как включить редактор VBA в Excel 2007?
  40. Как открыть файл в VBA?
  41. Как открыть Properties в VBA?
  42. Как открыть редактор Visual Basic?
  43. Как вставить код в Excel?
  44. Как подключить VBA?
  45. Как открыть окно Макрос в Excel?
  46. Что такое редактор Visual Basic?
  47. Как открыть файл миф?
  48. Как открыть документ Word в Excel?
  49. Как закрыть книгу в VBA?
  50. Как сделать жирный шрифт в VBA?
  51. Как открыть окно свойств в Visual Studio?
  52. Как вызвать диалоговое окно свойств объекта?
  53. Как включить VBA в Excel?
  54. Как открыть редактор VBA в Excel?
  55. Как включить макросы в Excel 2020?
  56. Как включить VBA в Excel 2016?
  57. Как включить VBA в Excel 2007?
  58. Как запустить Visual Basic?
  59. Как включить VBA в Excel 2013?
  60. Что такое с поддержкой макросов?
  61. Где хранятся макросы в Excel?
  62. Как открыть VBA в Excel 2019?
  63. Как установить VBA?
  64. Как включить режим конструктора в Excel 2016?

Как включить vba в excel 2019

Как включить VBA в Excel 2019?

Как включить макросы в Excel 2020?

Параметры макроса не меняются во всех программах Office.

  1. Откройте вкладку Файл.
  2. Щелкните Параметры.
  3. Затем выберите пункты Центр управления безопасностью и Параметры центра управления безопасностью.
  4. В центре управления безопасностью щелкните элемент Параметры макросов.
  5. Выберите необходимые параметры.
  6. Нажмите кнопку ОК.

Как открыть редактор VBA в Excel?

Запуск редактора Visual Basic

Простейший способ запустить редактор Visual Basic в Excel – нажать комбинацию клавиш Alt+F11 (то есть нажать клавишу Alt и, удерживая её, нажать клавишу F11). После этого откроется окно редактора Visual Basic, как показано на картинке ниже.

Как включить VBA в Excel 2016?

На вкладке Разработчик в группе Код нажмите кнопку Безопасность макросов . Чтобы включить вкладку «Разработчик», см. раздел Отображение вкладки «Разработчик». В категории Параметры макросов в разделе Параметры макросов выберите нужный вариант.

Как запустить макрос в Excel 2016?

Запуск макроса на вкладке «Разработчик»

  1. Откройте книгу, содержащую нужный макрос.
  2. На вкладке Разработчик в группе Код нажмите кнопку Макросы.
  3. В поле «Имя макроса» выберите макрос, который вы хотите запустить, и нажмите кнопку «Выполнить».
  4. У вас также есть другие варианты:

Что такое с поддержкой макросов?

В Word можно автоматизировать часто выполняемые задачи с помощью макросов. Макрос — это набор команд и инструкций, группируемых вместе в виде единой команды для автоматического выполнения задачи. Чтобы сэкономить время при выполнении часто повторяющихся задач, объедините несколько действий в макрос.

Как включить личную книгу макросов?

Создание и сохранение всех макросов в одной книге

  1. Перейдите на вкладку «Разработчик» и нажмите кнопку «Запись макроса».
  2. В диалоговом окне «Запись макроса» введите имя макроса в поле «Имя макроса». …
  3. В поле «Сохранить» выберите «Личная книга макроса», > ОК. …
  4. Нажмите кнопку «Разработчик> Остановить запись»,и Excel создает личную книгу макроса.

Как запустить Visual Basic?

Во всех приложениях Office это делается одинаково:

  1. самый простой способ: в меню Сервис выбрать Макрос -> Редактор Visual Basic;
  2. самый быстрый способ: нажать +;
  3. можно также воспользоваться кнопкой на панели инструментов Visual Basic (предварительно сделав ее видимой);

Как включить вкладку VBA Excel?

Как включить редактор VBA в Excel 2010?

  1. Выберите вкладку Файл (File) для перехода в окно представления Backstage.
  2. В находящейся слева навигационной панели щелкните на кнопке Параметры (Options). …
  3. В диалоговом окне Параметры Excel выберите категорию Настройка ленты (Customize Ribbon).
  4. В находящемся справа списке отображается перечень основных вкладок Excel.

Как установить VBA?

Чтобы установить компонент пакета Visual Basic for Applications, необходимо нажать кнопку Пуск, зайти в Панель управления/Программы и компоненты, выбрать программу Microsoft Office и нажать кнопку «Изменить», либо запустить установочный файл Setup.exe.

Как включить режим конструктора в Excel 2016?

Для Excel 2016 зайдите в Параметры — Настройка ленты — в разделе Основные вкладки справа поставьте галочку в пункте Разработчик, и нажмите кнопку ОК.

Как включить VBA в Excel 2013?

  1. Откройте вкладку Файл на ленте меню Excel.
  2. Перейдите к параметрам Excel.
  3. Выберите пункт бокового меню Центр управления безопасностью и нажмите кнопку Параметры центра управления безопасностью.
  4. Откройте Параметры макросов и выберите пункт меню Включить все макросы.

Как поставить макрос в Excel?

Чтобы записать макрос, следуйте инструкциям ниже.

  1. На вкладке Разработчик в группе Код нажмите кнопку Запись макроса. …
  2. В поле Имя макроса введите название макроса. …
  3. Чтобы назначить сочетание клавиш для запуска макроса, в поле Сочетание клавиш введите любую строчную или прописную букву.

Как добавить макрос в Excel?

Для этого нужно открыть редактор Visual Basic ( Alt + F11 ), правой кнопкой мыши нажать на Microsoft Excel Objects , выбрать Insert — Module:

  1. Копируем туда код нашего макроса:
  2. Нажимаем сохранить и возвращаемся к Excel . …
  3. Жмем Выполнить и получаем необходимый нам результат:
  4. Не так уж и сложно…

Как запустить макрос при открытии книги Excel?

Автоматический запуск макроса при открытии книги

  1. Откройте вкладку Разработчик и щелкните элемент Visual Basic.
  2. В левой части VBA Project Explorer разверните папку проекта VBA для книги, а затем дважды щелкните модуль ThisWorkbook. …
  3. В окне модуля, открываемом справа, вставьте следующий код: …
  4. В конце и подменю в области «Подгруппа» встраийте записанный код.

Как включить VBA в Excel?

Как открыть редактор VBA в Excel?

Вставляем код VBA в книгу Excel

  1. Открываем рабочую книгу в Excel.
  2. Нажатием Alt+F11 вызываем окно редактора Visual Basic.
  3. На панели Project-VBAProject кликаем правой кнопкой мыши по имени рабочей книги (в левой верхней части окна редактора) и в контекстном меню выбираем Insert > Module.

Как включить макросы в Excel 2020?

Нажмите кнопку Microsoft Office

, а затем — Параметры Excel. Выберите Центр управления безопасностью > Параметры центра управления безопасностью > Параметры макросов. Выберите нужные параметры.

Как включить VBA в Excel 2016?

На вкладке Разработчик в группе Код нажмите кнопку Безопасность макросов . Чтобы включить вкладку «Разработчик», см. раздел Отображение вкладки «Разработчик». В категории Параметры макросов в разделе Параметры макросов выберите нужный вариант.

Как включить VBA в Excel 2007?

Как включить макросы в Excel 2007

  1. 1) Нажмите большую круглую кнопку Office (в левом верхнем углу), и щелкните кнопку «Параметры Excel»
  2. 2) В открывшемся окне «Параметры Excel» в левом столбце выделите пункт «Центр управления безопасностью», …
  3. 3) В открывшемся окне «Центр управления безопасностью» выделите пункт «Параметры макросов»,

Как запустить Visual Basic?

Во всех приложениях Office это делается одинаково:

  1. самый простой способ: в меню Сервис выбрать Макрос -> Редактор Visual Basic;
  2. самый быстрый способ: нажать +;
  3. можно также воспользоваться кнопкой на панели инструментов Visual Basic (предварительно сделав ее видимой);

Как включить VBA в Excel 2013?

Как включить макросы в Excel 2013

  1. Откройте вкладку Файл на ленте меню Excel.
  2. Перейдите к параметрам Excel.
  3. Выберите пункт бокового меню Центр управления безопасностью и нажмите кнопку Параметры центра управления безопасностью.
  4. Откройте Параметры макросов и выберите пункт меню Включить все макросы.

Что такое с поддержкой макросов?

В Word можно автоматизировать часто выполняемые задачи с помощью макросов. Макрос — это набор команд и инструкций, группируемых вместе в виде единой команды для автоматического выполнения задачи. Чтобы сэкономить время при выполнении часто повторяющихся задач, объедините несколько действий в макрос.

Где хранятся макросы в Excel?

Макросы и средства VBA находятся на вкладке Разработчик, которая по умолчанию скрыта, поэтому сначала нужно включить ее.

  1. Перейдите в >Параметры Excel… > ленты & панель инструментов.
  2. В категории Настроить ленту в списке Основные вкладки установите флажок Разработчик, а затем нажмите кнопку Сохранить.

Как открыть VBA в Excel 2019?

Простейший способ запустить редактор Visual Basic в Excel – нажать комбинацию клавиш Alt+F11 (то есть нажать клавишу Alt и, удерживая её, нажать клавишу F11). После этого откроется окно редактора Visual Basic, как показано на картинке ниже.

Как установить VBA?

Чтобы установить компонент пакета Visual Basic for Applications, необходимо нажать кнопку Пуск, зайти в Панель управления/Программы и компоненты, выбрать программу Microsoft Office и нажать кнопку «Изменить», либо запустить установочный файл Setup.exe.

Как включить режим конструктора в Excel 2016?

Для Excel 2016 зайдите в Параметры — Настройка ленты — в разделе Основные вкладки справа поставьте галочку в пункте Разработчик, и нажмите кнопку ОК.

Источник

Как включить макросы в Excel 2019

Как включить макросы (разрешить использование макросов) в Excel 2019:

Видеоинструкция по включению макросов в Excel 2019

В Excel 2019 процесс включения макросов полностью идентичен этому же действию в Excel 2010:

1) На ленте нажмите пункт меню «Файл», а потом в открывшемся меню — кнопку «Параметры»:

2) В открывшемся окне «Параметры Excel» в левом столбце выделите пункт «Центр управления безопасностью»,
после чего справа (в том же окне) — нажмите кнопку «Параметры центра управления безопасностью»:

3) В открывшемся окне «Центр управления безопасностью» выделите пункт «Параметры макросов»,
и справа отметьте опцию «Включить все макросы»:

4) Перезапустите Excel (полностью его закрыв, и открыв снова), чтобы изменения настроек вступили в силу.

ВАЖНО: После того, как в настройках Excel вы включили макросы (установили низкий уровень безопасности),
необходимо полностью закрыть Excel, и запустить его заново, — только после этого настройки применятся.

Источник

Как включить макросы в Excel, Word, Power Point, open office?

Друзья привет. Если у вас при открытии документа офис возникают различные сообщения типа «не удалось определить надежность источника этого содержимого» значит документ содержит макросы.

По соображениям безопасности обычно в Office выключена поддержка макросов. На практике это означает, что содержимое документов ( код VBA) работать не будет. Если вы уверены что файлы попали к вам из безопасного источника — просто включаем их поддержку.

Как включить макросы в Excel 2013-2019?

Наиболее частое место использования макросов — пакет Microsoft Excel. Автоматизация расчетов и сокращение рутины — обычное дело. Чтобы макросы в файле начали работать заходим через меню «Файл» — «Параметры»…

… далее в центр управления безопасности…

… в «параметрах макросов» включаем поддержку всех макросов..

… и не забываем поставить галочку «Доверять доступ к объектной модели проектов VBA».

Активируем макросы в Microsoft Word 2013-2019

В Microsoft Word тоже нужно включать макросы если Вы планируете ими пользоваться. Делается все аналогичным образом.

В меню «Файл» открываем «Параметры» — «Центр управления безопасностью».

В «параметрах макросов» включаем «Все макросы» и доверяем доступ к объектной модели VBA.

Включаем макросы в Microsoft Power Point

В самом популярном приложении для создания презентаций так же есть возможность включить использование макрокоманд. Для этого нужно его открыть и через меню «Файл » проделать следующие манипуляции.

.. «Центр управления безопасностью», — параметры центра управления безопасностью.

Далее все делаем так как на фото ниже и сохраняем изменения.

Можно ли включить макросы в Open Office, Libre и им подобных?

Пакет Open Office является полноценным аналогом Microsoft Office. Он абсолютно бесплатный и много людей пользуется им.

Разработчики учли, что файлы созданные в word, excel могут содержать макросы. И конечно платформы с открытым исходным кодом умеют работать с такими файлами.

Особенностью Open Office является более гибкое управление макросами в процессе работы (через меню сервис)…

… поддержка макросов написанных на 4 различных языках программирования. Это интересно! Включать поддержку макросов нужно через Меню «Сервис»-» Параметры» — «Безопасность»:

Можно выбрать средний или низкий уровень безопасности.

Вкладка «Доверенные источники» позволит выбрать каталог, которые приложение будет считать безопасным. Если нужные документы положить туда то это и будет доверенным источником, на который программа ругаться не будет.

Можно использовать в качестве проверки и сертификаты безопасности, если таковые вам выдали. Ничего сложного. Предлагаю посмотреть небольшое видео

Как включать макросы в пакете Microsoft Office, Open Office видео

Итак мы убедились что в Microsoft Office для каждой разновидности програм входящих в пакет макросы нужно включать отдельно для каждой. В Open Office гораздо более гибкая настройка, к тому же поддерживающая макросы написанные на разных языках. Удачи!

Источник

Как открыть vba в excel 2019

Как открыть VBA в Excel 2019?

Простейший способ запустить редактор Visual Basic в Excel – нажать комбинацию клавиш Alt+F11 (то есть нажать клавишу Alt и, удерживая её, нажать клавишу F11). После этого откроется окно редактора Visual Basic, как показано на картинке ниже.

Как перейти в VBA в Excel?

Вставляем код VBA в книгу Excel

  1. Открываем рабочую книгу в Excel.
  2. Нажатием Alt+F11 вызываем окно редактора Visual Basic.
  3. На панели Project-VBAProject кликаем правой кнопкой мыши по имени рабочей книги (в левой верхней части окна редактора) и в контекстном меню выбираем Insert > Module.

Как включить редактор VBA в Excel 2007?

Включение и отключение доступа к Visual Basic проектам с помощью системы Microsoft Office 2007. В меню Сервис в Word или Excel укажите пункт макрос, а затем выберите пункт Безопасность. On the Tools menu in Word or Excel, point to Macro, and then click Security.

Как открыть файл в VBA?

Вы можете открыть файлы VBA с помощью следующих программ:

  1. Cool Edit.
  2. Cool Edit Pro.
  3. VBA Fragment Editor.
  4. Visual Chart Profesional.
  5. Parallels Tools Center.
  6. Free File Viewer Pro. Скачать

Как открыть Properties в VBA?

* Нажмите F4. * Щелкните на кнопке Properti es (Свойства) в панели инструментов Standard (Стандартная). * Выберите View=Properties из меню.

Как открыть редактор Visual Basic?

Во всех приложениях Office это делается одинаково:

Как вставить код в Excel?

Для этого нужно открыть редактор Visual Basic ( Alt + F11 ), правой кнопкой мыши нажать на Microsoft Excel Objects , выбрать Insert — Module: Копируем туда код нашего макроса: Нажимаем сохранить и возвращаемся к Excel .

Как подключить VBA?

Запустить VBA можно сочетанием клавиш Alt+F11 на клавиатуре, либо кнопкой «Visual Basic» на вкладке «Разработчик». По умолчанию вкладка «Разработчик» отключена во всех приложениях пакета Microsoft Office, поэтому предварительно ее нужно отобразить в настройках ленты.

Как открыть окно Макрос в Excel?

Запуск макроса на вкладке «Разработчик»

  1. Откройте книгу, содержащую нужный макрос.
  2. На вкладке Разработчик в группе Код нажмите кнопку Макросы.
  3. В поле Имя макроса выберите макрос, который вы хотите запустить, и нажмите кнопку Выполнить.
  4. У вас также есть другие варианты:

Что такое редактор Visual Basic?

Редактор Visual Basic служит командным центром для работы в VBA. В нем вы должны находиться при разработке VBA-форм, создании VBA-кода, тестировании и отладке VBA программ. … В большинстве VBA-приложений можно воспользоваться одним из следующих методов. * Выбрать из меню Сервис=Макрос=Редактор Visual Basic.

Как открыть файл миф?

Как, чем открыть файл .mif?

  1. GDAL.
  2. Pitney Bowes MapInfo.
  3. Golden Software Didger.
  4. Golden Software Surfer.

Как открыть документ Word в Excel?

Чтобы открыть конкретный документ Word через Excel, сделайте следующее.

  1. В книге Excel нажмите другой + F11 , чтобы открыть Microsoft Visual Basic для приложений окно.
  2. в Microsoft Visual Basic для приложений окно, пожалуйста, нажмите Вставить > модуль. …
  3. нажмите F5 или нажмите кнопку «Выполнить», чтобы запустить код.

Как закрыть книгу в VBA?

Закрыть окно редактора VBA макросом (Макросы/Sub)

Как сделать жирный шрифт в VBA?

Введите слово, которое вы хотите сделать жирным шрифтом, в поле «Find what:» и то же самое в поле «Replace with:», а затем, когда вы находитесь в поле «Replace With:», нажмите CTRL B. Вы должны увидеть, как «Format: Font: Bold» появляется под ним.

Как открыть окно свойств в Visual Studio?

Окно Свойства можно открыть из меню Вид. Кроме того, его можно открыть, нажав клавишу F4 или введя слово Свойства в поле поиска.

Как вызвать диалоговое окно свойств объекта?

Диалоговое окно Properties вызывается командой Properties Window (Окно свойств) из меню View (Вид), кнопкой Properties Window на стандартной панели инструментов или командой Properties контекстного меню выбранного объекта.

Как включить VBA в Excel?

Как открыть редактор VBA в Excel?

Вставляем код VBA в книгу Excel

  1. Открываем рабочую книгу в Excel.
  2. Нажатием Alt+F11 вызываем окно редактора Visual Basic.
  3. На панели Project-VBAProject кликаем правой кнопкой мыши по имени рабочей книги (в левой верхней части окна редактора) и в контекстном меню выбираем Insert > Module.

Как включить макросы в Excel 2020?

Нажмите кнопку Microsoft Office

, а затем — Параметры Excel. Выберите Центр управления безопасностью > Параметры центра управления безопасностью > Параметры макросов. Выберите нужные параметры.

Как включить VBA в Excel 2016?

На вкладке Разработчик в группе Код нажмите кнопку Безопасность макросов . Чтобы включить вкладку «Разработчик», см. раздел Отображение вкладки «Разработчик». В категории Параметры макросов в разделе Параметры макросов выберите нужный вариант.

Как включить VBA в Excel 2007?

Как включить макросы в Excel 2007

  1. 1) Нажмите большую круглую кнопку Office (в левом верхнем углу), и щелкните кнопку «Параметры Excel»
  2. 2) В открывшемся окне «Параметры Excel» в левом столбце выделите пункт «Центр управления безопасностью», …
  3. 3) В открывшемся окне «Центр управления безопасностью» выделите пункт «Параметры макросов»,

Как запустить Visual Basic?

Во всех приложениях Office это делается одинаково:

  1. самый простой способ: в меню Сервис выбрать Макрос -> Редактор Visual Basic;
  2. самый быстрый способ: нажать +;
  3. можно также воспользоваться кнопкой на панели инструментов Visual Basic (предварительно сделав ее видимой);

Как включить VBA в Excel 2013?

Как включить макросы в Excel 2013

  1. Откройте вкладку Файл на ленте меню Excel.
  2. Перейдите к параметрам Excel.
  3. Выберите пункт бокового меню Центр управления безопасностью и нажмите кнопку Параметры центра управления безопасностью.
  4. Откройте Параметры макросов и выберите пункт меню Включить все макросы.

Что такое с поддержкой макросов?

В Word можно автоматизировать часто выполняемые задачи с помощью макросов. Макрос — это набор команд и инструкций, группируемых вместе в виде единой команды для автоматического выполнения задачи. Чтобы сэкономить время при выполнении часто повторяющихся задач, объедините несколько действий в макрос.

Где хранятся макросы в Excel?

Макросы и средства VBA находятся на вкладке Разработчик, которая по умолчанию скрыта, поэтому сначала нужно включить ее.

  1. Перейдите в >Параметры Excel… > ленты & панель инструментов.
  2. В категории Настроить ленту в списке Основные вкладки установите флажок Разработчик, а затем нажмите кнопку Сохранить.

Как открыть VBA в Excel 2019?

Простейший способ запустить редактор Visual Basic в Excel – нажать комбинацию клавиш Alt+F11 (то есть нажать клавишу Alt и, удерживая её, нажать клавишу F11). После этого откроется окно редактора Visual Basic, как показано на картинке ниже.

Как установить VBA?

Чтобы установить компонент пакета Visual Basic for Applications, необходимо нажать кнопку Пуск, зайти в Панель управления/Программы и компоненты, выбрать программу Microsoft Office и нажать кнопку «Изменить», либо запустить установочный файл Setup.exe.

Как включить режим конструктора в Excel 2016?

Для Excel 2016 зайдите в Параметры — Настройка ленты — в разделе Основные вкладки справа поставьте галочку в пункте Разработчик, и нажмите кнопку ОК.

Источник

Простейший способ запустить редактор Visual Basic в Excel – нажать комбинацию клавиш Alt+F11 (то есть нажать клавишу Alt и, удерживая её, нажать клавишу F11). После этого откроется окно редактора Visual Basic, как показано на картинке ниже.

Как перейти в VBA в Excel?

Вставляем код VBA в книгу Excel

  1. Открываем рабочую книгу в Excel.
  2. Нажатием Alt+F11 вызываем окно редактора Visual Basic.
  3. На панели Project-VBAProject кликаем правой кнопкой мыши по имени рабочей книги (в левой верхней части окна редактора) и в контекстном меню выбираем Insert > Module.

Как включить редактор VBA в Excel 2007?

Включение и отключение доступа к Visual Basic проектам с помощью системы Microsoft Office 2007. В меню Сервис в Word или Excel укажите пункт макрос, а затем выберите пункт Безопасность. On the Tools menu in Word or Excel, point to Macro, and then click Security.

Как открыть файл в VBA?

Вы можете открыть файлы VBA с помощью следующих программ:

  1. Cool Edit.
  2. Cool Edit Pro.
  3. VBA Fragment Editor.
  4. Visual Chart Profesional.
  5. Parallels Tools Center.
  6. Free File Viewer Pro. Скачать

Как открыть Properties в VBA?

* Нажмите F4. * Щелкните на кнопке Properti es (Свойства) в панели инструментов Standard (Стандартная). * Выберите View=Properties из меню.

Как открыть редактор Visual Basic?

Во всех приложениях Office это делается одинаково:

Как вставить код в Excel?

Для этого нужно открыть редактор Visual Basic ( Alt + F11 ), правой кнопкой мыши нажать на Microsoft Excel Objects , выбрать Insert — Module: Копируем туда код нашего макроса: Нажимаем сохранить и возвращаемся к Excel .

Как подключить VBA?

Запустить VBA можно сочетанием клавиш Alt+F11 на клавиатуре, либо кнопкой «Visual Basic» на вкладке «Разработчик». По умолчанию вкладка «Разработчик» отключена во всех приложениях пакета Microsoft Office, поэтому предварительно ее нужно отобразить в настройках ленты.

Как открыть окно Макрос в Excel?

Запуск макроса на вкладке «Разработчик»

  1. Откройте книгу, содержащую нужный макрос.
  2. На вкладке Разработчик в группе Код нажмите кнопку Макросы.
  3. В поле Имя макроса выберите макрос, который вы хотите запустить, и нажмите кнопку Выполнить.
  4. У вас также есть другие варианты:

Что такое редактор Visual Basic?

Редактор Visual Basic служит командным центром для работы в VBA. В нем вы должны находиться при разработке VBA-форм, создании VBA-кода, тестировании и отладке VBA программ. … В большинстве VBA-приложений можно воспользоваться одним из следующих методов. * Выбрать из меню Сервис=Макрос=Редактор Visual Basic.

Как открыть файл миф?

Как, чем открыть файл .mif?

  1. GDAL.
  2. Pitney Bowes MapInfo.
  3. Golden Software Didger.
  4. Golden Software Surfer.

Как открыть документ Word в Excel?

Чтобы открыть конкретный документ Word через Excel, сделайте следующее.

  1. В книге Excel нажмите другой + F11 , чтобы открыть Microsoft Visual Basic для приложений окно.
  2. в Microsoft Visual Basic для приложений окно, пожалуйста, нажмите Вставить > модуль. …
  3. нажмите F5 или нажмите кнопку «Выполнить», чтобы запустить код.

Как закрыть книгу в VBA?

Закрыть окно редактора VBA макросом (Макросы/Sub)

Как сделать жирный шрифт в VBA?

Введите слово, которое вы хотите сделать жирным шрифтом, в поле «Find what:» и то же самое в поле «Replace with:», а затем, когда вы находитесь в поле «Replace With:», нажмите CTRL B. Вы должны увидеть, как «Format: Font: Bold» появляется под ним.

Как открыть окно свойств в Visual Studio?

Окно Свойства можно открыть из меню Вид. Кроме того, его можно открыть, нажав клавишу F4 или введя слово Свойства в поле поиска.

Как вызвать диалоговое окно свойств объекта?

Диалоговое окно Properties вызывается командой Properties Window (Окно свойств) из меню View (Вид), кнопкой Properties Window на стандартной панели инструментов или командой Properties контекстного меню выбранного объекта.

Как включить VBA в Excel?

Как открыть редактор VBA в Excel?

Вставляем код VBA в книгу Excel

  1. Открываем рабочую книгу в Excel.
  2. Нажатием Alt+F11 вызываем окно редактора Visual Basic.
  3. На панели Project-VBAProject кликаем правой кнопкой мыши по имени рабочей книги (в левой верхней части окна редактора) и в контекстном меню выбираем Insert > Module.

Как включить макросы в Excel 2020?

Нажмите кнопку Microsoft Office

, а затем — Параметры Excel. Выберите Центр управления безопасностью > Параметры центра управления безопасностью > Параметры макросов. Выберите нужные параметры.

Как включить VBA в Excel 2016?

На вкладке Разработчик в группе Код нажмите кнопку Безопасность макросов . Чтобы включить вкладку «Разработчик», см. раздел Отображение вкладки «Разработчик». В категории Параметры макросов в разделе Параметры макросов выберите нужный вариант.

Как включить VBA в Excel 2007?

Как включить макросы в Excel 2007

  1. 1) Нажмите большую круглую кнопку Office (в левом верхнем углу), и щелкните кнопку «Параметры Excel»
  2. 2) В открывшемся окне «Параметры Excel» в левом столбце выделите пункт «Центр управления безопасностью», …
  3. 3) В открывшемся окне «Центр управления безопасностью» выделите пункт «Параметры макросов»,

Как запустить Visual Basic?

Во всех приложениях Office это делается одинаково:

  1. самый простой способ: в меню Сервис выбрать Макрос -> Редактор Visual Basic;
  2. самый быстрый способ: нажать +;
  3. можно также воспользоваться кнопкой на панели инструментов Visual Basic (предварительно сделав ее видимой);

Как включить VBA в Excel 2013?

Как включить макросы в Excel 2013

  1. Откройте вкладку Файл на ленте меню Excel.
  2. Перейдите к параметрам Excel.
  3. Выберите пункт бокового меню Центр управления безопасностью и нажмите кнопку Параметры центра управления безопасностью.
  4. Откройте Параметры макросов и выберите пункт меню Включить все макросы.

Что такое с поддержкой макросов?

В Word можно автоматизировать часто выполняемые задачи с помощью макросов. Макрос — это набор команд и инструкций, группируемых вместе в виде единой команды для автоматического выполнения задачи. Чтобы сэкономить время при выполнении часто повторяющихся задач, объедините несколько действий в макрос.

Где хранятся макросы в Excel?

Макросы и средства VBA находятся на вкладке Разработчик, которая по умолчанию скрыта, поэтому сначала нужно включить ее.

  1. Перейдите в >Параметры Excel… > ленты & панель инструментов.
  2. В категории Настроить ленту в списке Основные вкладки установите флажок Разработчик, а затем нажмите кнопку Сохранить.

Как открыть VBA в Excel 2019?

Простейший способ запустить редактор Visual Basic в Excel – нажать комбинацию клавиш Alt+F11 (то есть нажать клавишу Alt и, удерживая её, нажать клавишу F11). После этого откроется окно редактора Visual Basic, как показано на картинке ниже.

Как установить VBA?

Чтобы установить компонент пакета Visual Basic for Applications, необходимо нажать кнопку Пуск, зайти в Панель управления/Программы и компоненты, выбрать программу Microsoft Office и нажать кнопку «Изменить», либо запустить установочный файл Setup.exe.

Как включить режим конструктора в Excel 2016?

Для Excel 2016 зайдите в Параметры — Настройка ленты — в разделе Основные вкладки справа поставьте галочку в пункте Разработчик, и нажмите кнопку ОК.

Как открыть Visual Basic в Word?

  1. На вкладке Разработчик нажмите кнопку Visual Basic. …
  2. В редакторе Visual Basic в меню Help (Справка) выберите Microsoft Visual Basic for Applications Help (Справка: Microsoft Visual Basic для приложений).

Понравилась статья? Поделить с друзьями:
  • Vba add sheet in excel
  • Vba excel 2016 функции
  • Vba add shape word
  • Vba excel 2013 книга скачать
  • Vba add row excel vba