VBA – Sub Procedure

VBA Tutorials - my Tech Mint

Sub Procedures are similar to functions however, there are a few differences. Sub procedures DO NOT Return a value while functions may or may not …

Read More ➜

VBA – Arrays

VBA Tutorials - my Tech Mint

We know very well that a variable is a container to store a value. Sometimes, developers are in a position to hold more than one …

Read More ➜

VBA – Strings

VBA Tutorials - my Tech Mint

Strings are a sequence of characters, which can consist of either alphabets, numbers, special characters, or all of them. A variable is said to be …

Read More ➜

VBA – Loops

VBA Tutorials - my Tech Mint

There may be a situation when you need to execute a block of code several number of times. In general, statements are executed sequentially: The …

Read More ➜

VBA – Decisions

VBA Tutorials - my Tech Mint

Decision making allows the programmers to control the execution flow of a script or one of its sections. The execution is governed by one or …

Read More ➜