Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Include/Exclude records based on date value in slicer

Hi,

I have a Date Dimension table  and use a slicer (from and to) to filter several transactional tables linked to a Job table. This works fine and I get the results I need.

 

I now have to include/exclude jobs in the Job table where the job created date is less than or equal to the To date in the above slicer.

 

How can I do this?

4 REPLIES 4
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

Create a disconnected date table as a slicer.

Table 2 = CALENDAR(MIN('Table'[date]),MAX('Table'[date]))

Create a measure and apply it to visual level filter:

Measure = IF(MAX('Table'[date])<=SELECTEDVALUE('Table 2'[Date]),1,0)

Vlianlmsft_0-1649406749667.png

 


Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Thank you Liang, you're suggestion has halped me to solve the problem.

amitchandak
Super User
Super User

@Anonymous , Try like

 

measure =
var _max = maxx(allselected('Date'), 'Date'[Date])
var _tab = summarize(filter(Job, Job[created date] <= _max), job[Job])
return
calculate([measure], filter(Job, Job[Job] in _tab))

 

Assume Date table and Job table are joined to table of measure

Anonymous
Not applicable

Thank you Amit, your suggestion has helped me to solve the problem.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors