1.

Excel VBA to Find Multiple Values in Range (4 Examples)

Method 1 - Finding Multiple Values from User Input The following code will prompt users to insert a value that they want to find and highlight all the occurrences of that value…

2.

Excel VBA to Find Matching Value in Column: 8 Examples

Method 1 - Using Match Function to Find One Matching Value in Column Find the Match value of the Model according to order ID. Prepare some cells for Order ID and Model…

3.

How to Find Blank Cells Using VBA in Excel: 6 Methods

Method 1 - Check Whether a Specific Cell Is Blank or Not Step 1: Open Microsoft Visual Basic; insert a Module using the instruction section. Paste the following macro in any Module. Sub…

4.

Excel VBA: Find the Next Empty Cell in Range: 4 Examples

We’ve used a dataset that contains a sale list of a super shop. The dataset has a bunch of empty cells and we want to find them before performing any calculations. Write…

5.

Find the Last Row with Data in a Range Using Excel VBA Macros – 7 Methods

This is the sample dataset. Opening the VBA Editor Press Alt+F11. Select Insert > Module. Method 1 - Use of the Range.End Property to Find the Last Row with Data in a…

6.

How to Find an Exact Match Using VBA in Excel (5 Easy Ways)

Suppose you have the following dataset: Method 1 - Find an Exact Match in a Range of Cells Steps: Press Alt+F11 on your keyboard to open the Visual Basic Editor. Click on…

7.

How to Find Last Row Using Excel VBA (5 Easy ways)

There are 4 columns in the dataset representing sales information. These columns are Sales Person, Region, Product, and Price. We'll find the last row in the dataset. How to Find the Last…

8.

FindNext Using VBA in Excel (2 Examples)

Here is an overview of this article: What is FindNext in VBA? In VBA code, the FindNext method follows the Find method. It finds the next cell that equals the same conditions…

Advanced Excel Exercises with Solutions PDF