Forum Discussion
DAX: Filter on Multiple Date Columns
- 5 years ago
Hi, Titatovenaar2
According to your description and sample pbix file, I can roughly understand your requirement, I think you can just use this measure to apply as the visual filter of the table chart:
Flag = VAR _selectedmonth = MONTH ( MAX ( 'Mutations_Period'[StartDate] ) ) RETURN IF ( MONTH ( MAX ( 'Mutations'[StartDate] ) ) = _selectedmonth || MONTH ( MAX ( 'Mutations'[EndDate] ) ) = _selectedmonth, 1, 0 )Then go to the table chart to apply the visual filter like this:
And you can get what you want.
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Titatovenaar2 ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
Check this blog on how to deal with two dates using date table
- Titatovenaar25 years ago
Advocate II
Thanks for this blog post, it's quite interesting, but I have to say that I can't easily grasp why they make the choices they do. I am experimenting with it now, but not so lucky yet.
Meanwhile, this is the file in which I have it all. Basically If I select 'April', I want 'April' from both column 'StartDate' and 'EndDate'.