VBA range.row

The Range.Row property returns the number of the first row in the selected range. To illustrate you this we are going to select…

Posted On

VBA Multiple IFS

Different languages have different syntaxes for nested if statements. In this lesson, I’m going to show you, how you can use multiple if…

Posted On

VBA Find Last Row

Here, I’m going to show you a few ways to get the last row using the VBA code. Find the last row in…

Posted On

Excel VBA Type

In VBA, you can create your own data types using the Type keyword. It’s very similar to struct data type from other programming…

Posted On