I have data in 3 columns on an excel spreadsheet.
Column1 Column2 Column3
Row1 101 500 3-1
Row2 102 500 3-2
Row3 103 600 4-5
Row4 104 700 3-1
I need to create a form that lets internal people search this. I thought about using HTML and MySQL, but some coworkers suggested I may be able to use if statements. I have 250 rows of data.
I need to have a text box where we can enter "101" and it display the data that is in columns 2 and 3 if column 1 has 101 in it.
I also need to have a box that searches column 2. So if I type 500 it would show me Rows 1 and 2 since 500 is in both columns.
I need a 3rd box to search the data in column 3 the same way.
I was able to accomplish desired results by making a table with a filter in Excel, but the issue is having the clear out the filter and move to a different filter. I want it to be as simple as possible.
Is there a way to do this in excel, or should I pursue it on HTML/MySQL? I'm not sure how to start either.