Trying to filter a table to show the associated data for the unique dates of a specific day of the week.
Managed to filter the table for a desired day of the week using a dropdown. =FILTER(FILTER(Member, Member[Day]=H1),{0,0,1,1,1,1},"No results")
Can filter unique dates from the table. =unique(Member[date])
Struggling to combine the two together.
Any help would be appreciated. If more info is needed, please let me know.
Thanks.

I may have misunderstood your question, however, what I have tried and came up with the following two ways, may be one of the other satisfies your requirements.
• Formula used in cell I2
The above formula returns only the first occurrences of the dates, I am not sure how you can combine
UNIQUE()withFILTER()function as the data does not have duplicates other than the dates and days.Another one which I can think of is:
Note: Again, I might have not understood the expected output you would need, it is quite possible to make the required changes, if explained more and shown with adequate data.