I have a workbook that has a defined list of months and years, along with a 2 different date columns that are not currently named. I need to be able to put a month/year on sheet1 from dropdown lists, and have the corresponding dates populate from those 2 different columns. Below is a sample idea of what I currently have:
Main table:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Month(Dropdown)[/TD]
[TD]Year(Dropdown)[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Datecol1[/TD]
[TD]Datecol2[/TD]
[/TR]
</tbody>[/TABLE]
Date column table:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Datecol1[/TD]
[TD]Datecol2[/TD]
[/TR]
[TR]
[TD]07/20/2018[/TD]
[TD]07/27/2018[/TD]
[/TR]
[TR]
[TD]08/03/2018[/TD]
[TD]08/10/2018[/TD]
[/TR]
[TR]
[TD]08/17/2018[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
So if I choose 'August' and '2018' from the main table, it would return results like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]August[/TD]
[TD]2018[/TD]
[/TR]
[TR]
[TD]08/03/2018[/TD]
[TD]08/10/2018[/TD]
[/TR]
[TR]
[TD]08/17/2018[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Can someone help me achieve this? Hopefully my goal makes sense. Thanks for all help in advance!
Main table:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Month(Dropdown)[/TD]
[TD]Year(Dropdown)[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Datecol1[/TD]
[TD]Datecol2[/TD]
[/TR]
</tbody>[/TABLE]
Date column table:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Datecol1[/TD]
[TD]Datecol2[/TD]
[/TR]
[TR]
[TD]07/20/2018[/TD]
[TD]07/27/2018[/TD]
[/TR]
[TR]
[TD]08/03/2018[/TD]
[TD]08/10/2018[/TD]
[/TR]
[TR]
[TD]08/17/2018[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
So if I choose 'August' and '2018' from the main table, it would return results like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]August[/TD]
[TD]2018[/TD]
[/TR]
[TR]
[TD]08/03/2018[/TD]
[TD]08/10/2018[/TD]
[/TR]
[TR]
[TD]08/17/2018[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Can someone help me achieve this? Hopefully my goal makes sense. Thanks for all help in advance!