So I'm working on a fun little database where my search bar is also my data entry bar. I'll worry about the data entry later, but I'm looking to filter pretty dynamically the data I put in.
The code I'm posting is wrong, but it was my first shot!
Is it possible to set the criteria to not be absolute? Shoot, how do I put this... =*"Giant"*? So if there is a cell somewhere in the data that says "Big Giant File" I would like the typed criteria of "Giant" to show the row with "Big Giant File"! As it is I think I would have to start with "Big" to find such a cell.
I'm also trying to get this to update with every typed change! This is presenting a lot of issues as I have very little idea of what I'm doing but I'm convinced it isn't all too complicated. My file is very easy to read! Only one sheet :D take a look!
New Database 6.18.15.xlsm
Thanks a lot for taking a stab at it guys!![]()
Private Sub Worksheet_Change(ByVal Target As Range) With Sheets("Sheet1") .AutoFilterMode = False With .Range("B10:M" & .Cells(Rows.Count, 2).End(xlUp).Row) .AdvancedFilter Action:=xlFilterInPlace, CriteriaRange:= _ Range("B3:M4"), Unique:=False End With End With Range("A1").Select End Sub
Red
Bookmarks