Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi community,
I have a date slicer which is an event date column.
All my transactions have an event date and my dashboard is filtered by a slicer based on the event date.
However, there is another date from a different table which is Adoption manager assigned date. Usually this happens a couple of days after transactions start flowing in.
I need to make my dashboard so the event_date slicer interacts with the assigned date so it actually start counting events from the assigned date. In the Screenshot below the slicer is set at 02/02/2023 and it starts counting events from 03/03/2023 since this was the first event that happened in that range. I need it to start counting from 16/03/2023 which is the Date Assigned date.
The two tables are connected through the data model.
Solved! Go to Solution.
@Anonymous, Can be achieved with a Date table. Follow the below steps
Thanks people. This was helpful.
@Anonymous, Can be achieved with a Date table. Follow the below steps
Create a measure like:
DateSlicerFilter = IF(SELECTEDVALUE([SlicerDate]) >= [DateAssigned], 1)
and use that on the visual filter for your date slicer to only return dates after assigned.