How to Select Range Based on Cell Value VBA (7 Ways)

If you are looking for some of the easiest ways to select a range based on cell value using VBA, then you are in the right place. You can select a range of cells for different purposes based on another cell value or the same cell value easily by following this article.

Let’s get started with the article.

Download Workbook

7 Ways to Select Range Based On Cell Value VBA

Here, I have the following data table of a company to demonstrate the ways of selecting range based on cell value VBA.

For this purpose, I have used Microsoft Excel 365 version, you can use any other versions according to your convenience.

select range based on cell value VBA

Method-1: Selecting Range Based On Another Cell Value

Here, we will select the cell range in the Region and Sales column based on the string Apple in the Product column. To do this follow this method.

select range based on cell value VBA

Step-01:
➤Go to Developer Tab>>Visual Basic Option

another cell

Then, the Visual Basic Editor will open up.
➤Go to Insert Tab>> Module Option

another cell

After that, a Module will be created.

another cell

Step-02:
➤Write the following code

Sub selectrange1()

Dim LR As Long

Dim x1 As Range, y1 As Range

With ThisWorkbook.Worksheets("another")

    LR = Cells(Rows.Count, "B").End(xlUp).Row

    Application.ScreenUpdating = False

    For Each x1 In .Range("B1:B" & LR)

        If x1.Text = "Apple" Then

            If y1 Is Nothing Then

            Set y1 = .Range("C" & x1.Row).Resize(, 2)

            Else

            Set y1 = Union(y1, .Range("C" & x1.Row).Resize(, 2))

            End If

        End If

        Next x1

        Application.ScreenUpdating = True

    End With

    If Not y1 Is Nothing Then y1.Select

End Sub

At first, we declared LR, and x1 and y1 as Long and Range respectively.

Here, “another” is the sheet name, and the WITH statement lets you specify an object or user-defined type once for an entire series of statements.

LR will give you the last row of your data table and FOR loop is used for performing the actions in the range of Column B.

We have used two IF loops, one is for checking the string “Apple” in Column B and the other is for storing the range between Column C and Column D corresponding to the cells having “Apple” in a variable y1.

Here, Range(“C” & x1.Row).Resize(, 2) indicates to selecting two columns from Column C and Union will return the union of multiple ranges corresponding to the cell value “Apple” and finally the ranges will be selected.

another cell

➤Press F5

Result:
In this way, you will select the range of cells in the Region and Sales column corresponding to the cell value Apple in the Product column.

another cell

Read more: VBA for Each Cell in Range in Excel

Method-2: Changing Color of a Cell Range Based On Another Cell Value

If you want to change the color of the range of cells in the Sales column based on the cell value Apple in the Product column, then follow this method.

select range based on cell value VBA

Step-01:
➤Follow Step-01 of Method-1
➤Type the following code

Sub selectrange2()

Dim Rng As Range

Dim Lr As Long

Dim n As Long

Lr = Cells(Rows.Count, "B").End(xlUp).Row

    For n = 1 To Lr

        If Cells(n, "B").Value = "Apple" Then

            If Rng Is Nothing Then

            Set Rng = Cells(n, "D")

            Else

            Set Rng = Union(Rng, Cells(n, "D"))

            End If

        End If

    Next n

Rng.Interior.Color = vbRed

End Sub

At first, we declared Lr and n, and Rng as Long and Range respectively.
Lr will give you the last row of your data table and the FOR loop is used for performing the actions for rows from 1 To Lr.

We have used two IF loops, one is for checking the string “Apple” in Column B for rows 1 To Lr and the other is for storing the range of cells in Column D corresponding to the cells having “Apple” in a variable Rng. Here, Union will return the union of multiple ranges corresponding to the cell value “Apple” and finally the ranges will be colored by red.

changing color of a range based on another cell value

➤Press F5

Result:
After that, you will change the color of the range of cells in the Sales column corresponding to the cell value Apple in the Product column.

changing color of a range based on another cell value

Method-3: Selecting Range Based On Same Cell Value

If you want to select the range of cells in the Product column based on the string Orange in this column, then follow this method.

select range based on cell value VBA

Step-01:
➤Follow Step-01 of Method-1
➤Type the following code

Sub selectrange3()

Dim Rng As Range

Dim Lr As Long

Dim n As Long

Lr = Cells(Rows.Count, "B").End(xlUp).Row

For n = 1 To Lr

    If Cells(n, "B").Value = "Orange" Then

        If Rng Is Nothing Then

        Set Rng = Cells(n, "B")

        Else

        Set Rng = Union(Rng, Cells(n, "B"))

        End If

    End If

    Next n

Rng.Select

End Sub

At first, we declared Lr, n, and Rng as Long and Range respectively.
Lr will give you the last row of your data table and the FOR loop is used for performing the actions for rows from 1 To Lr.

We have used two IF loops, one is for checking the string “Orange” in Column B for rows 1 To Lr and the other is for storing the range of cells in Column B corresponding to the cells having “Orange” in a variable Rng. Here, Union will return the union of multiple ranges corresponding to the cell value “Orange” and finally the ranges will be selected.

selecting range based on same cell value

➤Press F5

Result:
Afterward, you will select the range of cells in the Product column for the cell value Orange in this column.

selecting range based on same cell value

Read more: Loop through a Range for Each Cell with Excel VBA

Method-4: Selecting Range Based On Multiple Criteria

If you want to select the cells in the Sales column which have values of more than $1500.00 and less than $2000.00. For selecting cells based on these multiple criteria you can follow this method.

select range based on cell value VBA

Step-01:
➤Follow Step-01 of Method-1
➤Type the following code

Sub selectrange4(Rng1 As Range, MinValue As Double, MaxValue As Double)

    Dim rng As Range

    Dim Cell As Object

    For Each Cell In Rng1

        If Cell.Value >= MinValue And Cell.Value <= MaxValue Then

            If rng Is Nothing Then

                Set rng = Range(Cell.Address)

            Else

                Set rng = Union(rng, Range(Cell.Address))

            End If

        End If

    Next

    rng.select

End Sub

Sub Callselectrange4()

     Call selectrange4(Range("D5:D12"), 1500, 2000)

End Sub

At first, we declared Rng1, rng, Minvalue, Maxvalue and Cell as Range, Double, and Object respectively.

Here, we used two Sub procedures, the one Callselectrange4() is for calling the other Sub procedure selectrange4 and giving the value of the variables Rng1 as Range(“D5:D12”), Minvalue as 1500, and Maxvalue as 2000 respectively.

Here, one FOR loop and two IF loops have been used in the selectrange4 Sub procedure.

selecting range based on multiple criteria

➤Press F5

Result:
Then, you will select the range of cells in the Sales column for the cells which have values of more than $1500.00 and less than $2000.00.

selecting range based on multiple criteria


Similar Readings:


Method-5: Changing Font Style of a Range Based On Multiple Criteria

If you want to bold the fonts of the cells in the Sales column which have values of more than $1500.00 and less than $2000.00. For doing this based on these multiple criteria you can follow this method.

select range based on cell value VBA

Step-01:
➤Follow Step-01 of Method-1
➤Type the following code

Sub selectrange5(Rng1 As Range, MinValue As Double, MaxValue As Double)

    Dim rng As Range

    Dim Cell As Object

    For Each Cell In Rng1

        If Cell.Value >= MinValue And Cell.Value <= MaxValue Then

            If rng Is Nothing Then

                Set rng = Range(Cell.Address)

            Else

                Set rng = Union(rng, Range(Cell.Address))

            End If

        End If

    Next

    rng.Font.Bold=True

End Sub

Sub Callselectrange5()

     Call selectrange5(Range("D5:D12"), 1500, 2000)

End Sub

At first, we declared Rng1, rng, Minvalue, Maxvalue, and Cell as Range, Double, and Object respectively.

Here, we used two Sub procedures, the one Callselectrange4() is for calling the other Sub procedure selectrange4 and giving the value of the variables Rng1 as Range(“D5:D12”), Minvalue as 1500, and Maxvalue as 2000 respectively.

Here, one FOR loop and two IF loops have been used in the selectrange4 Sub procedure.

changing font style based on multiple criteria

➤Press F5

Result:
In this way, you will be able to bold the fonts of the range of cells in the Sales column for the cells which have values of more than $1500.00 and less than $2000.00.

changing font style based on multiple criteria

Method-6: Selecting Range Based On Blank Cells

Here, we have some blank cells (I have removed the values for explaining this method) in the Sales column and to select these blank cells we will use the VBA code of this method.

select range based on cell value VBA

Step-01:
➤Follow Step-01 of Method-1
➤Type the following code

Sub selectrange6()

Dim Rng As Range

Dim Lr As Long

Dim n As Long

Lr = Cells(Rows.Count, "D").End(xlUp).Row

    For n = 5 To Lr

        If Cells(n, "D").Value = "" Then

            If Rng Is Nothing Then

            Set Rng = Cells(n, "D")

            Else

            Set Rng = Union(Rng, Cells(n, "D"))

            End If

        End If

    Next n

Rng.Select

End Sub

At first, we declared Lr, n, and Rng as Long and Range respectively.

Lr will give you the last row of your data table and the FOR loop is used for performing the actions for rows from 5 To Lr. Here, 5 is for the first row of our range.

We have used two IF loops, one is for checking the string “” (Blank) in Column D for rows 1 To Lr and the other is for storing the range of cells in Column D corresponding to the cells having Blank in a variable Rng. Here, Union will return the union of multiple ranges corresponding to the blank cells, and finally, the ranges will be selected.

selecting blank cells

➤Press F5

Result:
Finally, you will select the blank cells in the column Sales.

selecting blank cells

Method-7: Changing Cell Value Based On Selected Cell

Suppose, you want to have the value of the cells in the first cell of the Output column which you select in the Product column. To do this you can follow this method.

select range based on cell value VBA

Step-01:
➤Follow Step-01 of Method-1
➤Type the following code

Sub selectrange7(ByVal target As Range)

If Selection.Count = 1 Then

    If Not Intersect(target, Range("B5:B12")) Is Nothing Then

        Call ShowBcolumn

    Else

        Call ShowActive

    End If

End If

End Sub

Sub ShowBcolumn()

Range("E5").Value = ActiveCell.Value

End Sub

Sub ShowActive()

Range("E5").Value = Range("B5").Value

End Sub

Here, we used three Sub procedures, selectrange7 is the main procedure which will call the other two Sub procedures ShowBcolumn() and ShowActive().

Intersect will give the range that is the intersection of two or more ranges and when the selected cell in the dataset is intersected with the range “B5:B12” then it will call ShowBcolumn(). It will return the selected cell’s value in the E5 cell. Otherwise, it will call ShowActive() which will return the value of cell B5.

changing cell value

➤Save the code.
➤Select any cell in the Product column (I have selected the cell containing Banana)
➤Go to Developer Tab>>Macros Option

changing cell value

Then Macro Wizard will open up.
➤Select the Macro name ShowBcolumn and then Run.

changing cell value

Result:
Then, you will get the value of the selected cell (Banana) in cell E5.

changing cell value

Practice Section

For doing practice by yourself we have provided a Practice section like below in a sheet named Practice. Please do it by yourself.

practice

Conclusion

In this article, I tried to cover the easiest ways to use VBA effectively while selecting a range based on cell value. Hope you will find it useful. If you have any suggestions or questions, feel free to share them with us.


Further Readings

Tanjima Hossain

Tanjima Hossain

Hello everyone, This is Tanjima Hossain. I have completed my graduation from BUET. Then I have started working as a technical writer in SOFTEKO. I have grown interest in technical content writing, research topics, numerical analysis related field and so I am here. Besides this I love to interact with different people and I love to spend my spare time by reading, gardening ,cooking etc.

2 Comments
  1. I am working with your Practice sheet but the selectrange1 macro gives a Run-time error ‘1004’ Select method of Range class failed. Please advise.

    • Hi David, I think maybe you have forgotten to change the name of the worksheet from another to practice while working with the practice worksheet. So, you can try out the following code to work with the practice sheet.
      Sub selectrange1()
      Dim LR As Long
      Dim x1 As Range, y1 As Range
      With ThisWorkbook.Worksheets(“practice”)
      LR = Cells(Rows.Count, “B”).End(xlUp).Row
      Application.ScreenUpdating = False
      For Each x1 In .Range(“B1:B” & LR)
      If x1.Text = “Apple” Then
      If y1 Is Nothing Then
      Set y1 = .Range(“C” & x1.Row).Resize(, 2)
      Else
      Set y1 = Union(y1, .Range(“C” & x1.Row).Resize(, 2))
      End If
      End If
      Next x1
      Application.ScreenUpdating = True
      End With
      If Not y1 Is Nothing Then y1.Select
      End Sub

Leave a reply

5 Excel Hacks You Never Knew

Genius tips to help you unlock Excel's hidden features

FREE EMAIL BONUS

ExcelDemy
Logo