I've made a spreadsheet (database?) of my digital movie collection. I've got about 750 files over six different portable hard drives. Some of those are duplicates, as happens over usage and multiple people in my family using them.
The spreadsheet is done in Excel 2010, and it consists of several tabs/sheets (Movies, TV Shows, Web Videos, etc.). On the movies tab, each line starts with the Title (Col. A), Hard Drive (B), and so forth that includes the filepath, file name, year, genre, rating, short description, etc.
I've made another sheet that is just a search. I'm trying to figure out the best way to do a keyword search in the Title column on the Movies tab. I'm not wanting an exact match, because someone may be typing it wrong, or only typing part of the title (such as instead of typing "The Aristocats", they only type "Aristocat").
I've looked at the LOOKUP and VLOOKUP functions, but the results of non-exact searches isn't getting me what I want.
I have this:
=VLOOKUP($C$2,Movies!$A:$A,1,TRUE)
C2 is the search box that the user can type into.
But, if it isn't an exact match, then it returns the movie title of the line above.
Also, I'd like that if it exists in multiple locations, I want the results shown to be all matching results.
I'd like to steer away from VB right now, and see what Excel can do.
Thanks!
The spreadsheet is done in Excel 2010, and it consists of several tabs/sheets (Movies, TV Shows, Web Videos, etc.). On the movies tab, each line starts with the Title (Col. A), Hard Drive (B), and so forth that includes the filepath, file name, year, genre, rating, short description, etc.
I've made another sheet that is just a search. I'm trying to figure out the best way to do a keyword search in the Title column on the Movies tab. I'm not wanting an exact match, because someone may be typing it wrong, or only typing part of the title (such as instead of typing "The Aristocats", they only type "Aristocat").
I've looked at the LOOKUP and VLOOKUP functions, but the results of non-exact searches isn't getting me what I want.
I have this:
=VLOOKUP($C$2,Movies!$A:$A,1,TRUE)
C2 is the search box that the user can type into.
But, if it isn't an exact match, then it returns the movie title of the line above.
Also, I'd like that if it exists in multiple locations, I want the results shown to be all matching results.
I'd like to steer away from VB right now, and see what Excel can do.
Thanks!