Forum Discussion
Anonymous
4 years agoNot applicable
date slicer setup
<p> I have a date table and another Project data table with Planned start and Planned Finish. How to connect these two tables..so that if i put a slicer for date table, it picks and filters correct d...
v-easonf-msft
4 years agoCommunity Support
Hi, Anonymous
If you have a seperate calendar table ,you can create a measure and apply it to table filter pane to filter data.
visual filter =
VAR _selecteddate =
MAX ( 'Calendar'[Date] )
RETURN
IF (
ISFILTERED ( 'Calendar'[Date] ),
IF (
_selecteddate >= MAX ( 'Table'[Planned Start] )
&& _selecteddate <= MAX ( 'Table'[Planned Finish] ),
1,
0
),
1
)
Best Regards,
Community Support Team _ Eason
Anonymous
4 years agoNot applicable
and also its not working on Cards visual