I hope I can explain this well enough. I have a table that is columns A-P and with duplicate and unique values. The Data I want to match is in column I and column P. One is a name and the other is a date that has been extracted to month and year. I have one drop down list that has names and another that has month and another that has year. I want to return multiple different columns to create a variable list that is based on the points chosen from the drop down lists that will show the data from the table with all data that matches the name and month/year combo. The table is constantly growing and will continue to have multiple months in it for years to come as they get added. Below is a simplified version of my excel.
Data
[TABLE="width: 500"]
<tbody>[TR]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 500, align: left"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]Report #1[/TD]
[TD]Cost #1[/TD]
[TD]Name #1[/TD]
[TD]Project #1[/TD]
[TD]Date #1[/TD]
[/TR]
[TR]
[TD]Report #2[/TD]
[TD]Cost #2[/TD]
[TD]Name #1[/TD]
[TD]Project #2[/TD]
[TD]Date #1[/TD]
[/TR]
[TR]
[TD]Report #3[/TD]
[TD]Cost #3[/TD]
[TD]Name #2[/TD]
[TD]Project #3[/TD]
[TD]Date #1[/TD]
[/TR]
[TR]
[TD]Report #4[/TD]
[TD]Cost #4[/TD]
[TD]Name #1[/TD]
[TD]Project #4[/TD]
[TD]Date #2[/TD]
[/TR]
[TR]
[TD]Report #5[/TD]
[TD]Cost #5[/TD]
[TD]Name #2[/TD]
[TD]Project #5[/TD]
[TD]Date #2[/TD]
[/TR]
[TR]
[TD]Report #6[/TD]
[TD]Cost #6[/TD]
[TD]Name #1[/TD]
[TD]Project #6[/TD]
[TD]Date #2[/TD]
[/TR]
[TR]
[TD]Report #7[/TD]
[TD]Cost #7[/TD]
[TD]Name #2[/TD]
[TD]Project #7[/TD]
[TD]Date #1[/TD]
[/TR]
</tbody>[/TABLE]
Drop down lists [TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]List of Names[/TD]
[/TR]
[TR]
[TD]Month[/TD]
[TD]List of months[/TD]
[/TR]
[TR]
[TD]Year[/TD]
[TD]List of years[/TD]
[/TR]
</tbody>[/TABLE]
List of data will return below drop down lists.
I know I can use index formulas, but I just can't seem to figure it out after searching for the answer. If there are other ideas, then I am more than open to them. I have done some VBA coding as well, but I would like to stay away from coding if possible so everybody else that uses this sheet doesn't have to deal with macros.
Thanks.
Data
[TABLE="width: 500"]
<tbody>[TR]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 500, align: left"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]Report #1[/TD]
[TD]Cost #1[/TD]
[TD]Name #1[/TD]
[TD]Project #1[/TD]
[TD]Date #1[/TD]
[/TR]
[TR]
[TD]Report #2[/TD]
[TD]Cost #2[/TD]
[TD]Name #1[/TD]
[TD]Project #2[/TD]
[TD]Date #1[/TD]
[/TR]
[TR]
[TD]Report #3[/TD]
[TD]Cost #3[/TD]
[TD]Name #2[/TD]
[TD]Project #3[/TD]
[TD]Date #1[/TD]
[/TR]
[TR]
[TD]Report #4[/TD]
[TD]Cost #4[/TD]
[TD]Name #1[/TD]
[TD]Project #4[/TD]
[TD]Date #2[/TD]
[/TR]
[TR]
[TD]Report #5[/TD]
[TD]Cost #5[/TD]
[TD]Name #2[/TD]
[TD]Project #5[/TD]
[TD]Date #2[/TD]
[/TR]
[TR]
[TD]Report #6[/TD]
[TD]Cost #6[/TD]
[TD]Name #1[/TD]
[TD]Project #6[/TD]
[TD]Date #2[/TD]
[/TR]
[TR]
[TD]Report #7[/TD]
[TD]Cost #7[/TD]
[TD]Name #2[/TD]
[TD]Project #7[/TD]
[TD]Date #1[/TD]
[/TR]
</tbody>[/TABLE]
Drop down lists [TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]List of Names[/TD]
[/TR]
[TR]
[TD]Month[/TD]
[TD]List of months[/TD]
[/TR]
[TR]
[TD]Year[/TD]
[TD]List of years[/TD]
[/TR]
</tbody>[/TABLE]
List of data will return below drop down lists.
I know I can use index formulas, but I just can't seem to figure it out after searching for the answer. If there are other ideas, then I am more than open to them. I have done some VBA coding as well, but I would like to stay away from coding if possible so everybody else that uses this sheet doesn't have to deal with macros.
Thanks.