which way to use filter data before finishing from writing word based on cell value

Ali M

Active Member
Joined
Oct 10, 2021
Messages
290
Office Version
  1. 2019
  2. 2013
Platform
  1. Windows
Hi

I search for way to show me filter data before finishing from writing the word . in other meaning will filter data when I write part of word until finishing from write the whole word . I don't want to wait for finishing from writing the whole word to see the result.
I use this
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim lr As Long
    Dim rng As Range
    lr= Me.Cells(Rows.Count, "C").End(xlUp).Row
    Set rng= Range("C5:H" & lr)
    If Me.FilterMode Then Me.ShowAllData
    If Not IsEmpty(Range("K2")) Then
        rng.AutoFilter Field:=2, Criteria1:=Range("K2").Value & "*"
     End If
thanks
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.

Forum statistics

Threads
1,215,136
Messages
6,123,246
Members
449,093
Latest member
Vincent Khandagale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top