Skip to content

OfficeInside.Org

Office tutorials
  • Excel VBA Tutorial
  • Excel VBA How To
  • Excel VBA Functions
  • Excel How To
  • Links
  • Search

OfficeInside.Org

  • Search
  • Excel VBA Tutorial
  • Excel VBA How To
  • Excel VBA Functions
  • Excel How To
  • Links
Excel VBA Loops - Introduction

Introduction to the loops in Excel VBA Loops are the most powerfull elements in programming languages. Using them, you can automate activities, speed up your programs, do things that you couldn’t do in the Excel datasheet. The loop, as its name suggests, is used to do some operations many times. In VBA Excel, there […]

Excel VBA Loops – Introduction

Excel VBA course - VBA Select CASE Statement

SELECT CASE instruction – introduction Another instruction next to IF THEN ELSE used in the decision making process by your programs is the SELECT CASE VBA statement. The instruction checks entered value with the defined conditions. On this basis, one scenario is chosen in your decision-making process. After selecting the scenario, the action stored in the block is […]

Select CASE statement in Excel VBA

1 comment
Excel VBA course - VBA IF THEN ELSE Statement

VBA IF THEN ELSE – What is the conditional statement? In the simplest sense, VBA IF is the equivalent of the Excel IF(), but function used in the VBA code. Imagine that you want your program to make decisions based on the data you enter. Depending on what data you enter at […]

IF THEN ELSE statement in Excel VBA

Excel VBA course - Worksheet functions

Worksheet functions – How to use the Excel function in VBA  Have you ever wondered how you can use the Excel function in VBA? Worksheet functions come with help. As you know, the Excel spreadsheet offers a number of useful functions. The resource of functions that you can use in the VBA code […]

Worksheet functions in Excel VBA

Excel VBA course - Creating own function

Creating VBA functions defined by user Both Excel and VBA offer you a number of useful functions. But what if you would like to create a VBA function that you will use in Excel? VBA offers you possibility of creating your own functions. These are functions that source code you write yourselve. You can […]

Creating functions in Excel VBA – User defined functions

Excel VBA course - VBA date and time functions

Description of date and time functions. VBA date functions, as the name suggests, are used to manipulate the values ​​related to dates and time. On their basis, you can catch any parameter such as day, month, year, etc. from the given date. You can also subtract two dates from each […]

Date and time functions in Excel VBA

Excel VBA course - VBA character functions

VBA character functions in Excel The Excel VBA offers us a number of useful character functions. We can’t compare them to the number of functions in an Excel spreadsheet, and these are not the same functions. The use of the sheet functions in VBA code will be described in other chapter.  VBA Character functions can […]

VBA character functions

Excel VBA course - VBA math functions

Description of math functions in Excel VBA Below I present the names and descriptions of all standard math functions in Excel VBA. As you can see, functions like VBA RND don’t need arguments. Functions like VBA ROUND require 2 arguments – the value and the number of decimal places to […]

VBA mathematical functions

1 comment
Excel VBA course - VBA functions

Introduction to functions in Excel VBA You have already come to the chapter about VBA functions – Congratulations !!! In VBA we have a large number of useful functions. Using them our programs work in the right way. With their use, you will do mathematical activities, manipulate text data and dates.  You can […]

Functions in VBA Excel

1 comment
Excel VBA course - VBA operators

Types of operators in Excel VBA In our scripts we will use both arithmetic expressions and logical expressions. For this purpose, we will be able to use operators in Excel VBA, we can put them into 3 groups: arithmetic logical comparison VBA operators: arithmetic Arithmetic operators serve as the name suggests […]

Operators in VBA Excel

Excel VBA course - VBA data types

Introduction to data types in Excel VBA Why is it so important to assign a variable to the correct data type? Your program and its variables use the resources of your computer. If you want to ensure that your program works quickly, choose the types of data that you really […]

VBA data types in Excel

1 comment
Excel VBA course - VBA Constant values

Constant values in VBA – what is it? In the previous chapter of the course you learned what are the VBA variables using in your VBA code. The difference between variables and constants in VBA is the values ​​assigned as constant will not change during the launch of your program. If you want your […]

Constant values in VBA Excel programming

Excel VBA course - VBA Variables

Introduction to VBA variables In VBA, as in other programming languages, we work with variables. The VBA language does not require declaring variables. You can, for example enter variable name that will be interpreted as a variable, and then you can execute any instructions on it. I put an example listed below. 'OfficeInside.Org Sub […]

Excel VBA Variables

1 comment
Excel VBA course - Cells and fonts formatting VBA

Formatting cells and fonts in VBA – introduction Cells as well as other elements of the Excel spreadsheet can be formatted from the VBA code level. The formatting itself can be done in 2 ways. The first way is to set each format using a separate code block. You can also use […]

Formatting cells and fonts in Excel VBA

1 comment
Excel VBA course - VBA InputBox

InputBox window – entering data into VBA It’s great, that you have already reached this part of VBA tutorial. After the VBA MsgBox window you will learn how to work with window for entering data into our VB code. Like the MsgBox window, this window has many additional parameters. Let’s […]

VBA InputBox window in Excel

2 comments
Excel VBA course - VBA MsgBox yes no cancel questions

VBA MsgBox – data presentation in window You have lerned basics of VBA MsgBox window while writing your first program here: VBA first program. This window is one of many possibilities to present something using VBA code in Excel. It can be use to display messages, the program results etc. Below […]

VBA MsgBox window in Excel

2 comments

Top Posts

  • Excel VBA Shell - How to control programs from Excel
    Excel VBA Shell - How to control programs from Excel
  • TimeValue VBA Function - How to convert text to time
    TimeValue VBA Function - How to convert text to time
  • VBA Add-in - Creating Add-ins in Excel
    VBA Add-in - Creating Add-ins in Excel
  • Sin VBA function - How to calculate the sine value (sinus)
    Sin VBA function - How to calculate the sine value (sinus)
  • DatePart VBA Function - How extract parts from date and time
    DatePart VBA Function - How extract parts from date and time

© 2025 OfficeInside.Org – All rights reserved

Powered by WP – Designed with the Customizr theme

 

Loading Comments...