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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
smileamile2
Resolver I
Resolver I

One table, 2 date slicers that work as an "or" not "and"

I have two date slicers, Create Date and Close Date. Both are used as relative date slicers and will select a date range. I have one table that just returns a bunch of item detail data, no aggregations. I need the slicers to filter the table as an "or" condition, rather than "and".

 

If I select Create Date in Last 1 week and Close Date in Next 1 week, I should see all records that either have a Create Date in the last week OR a Close Date in the next week.  Since the slicers can return multiple values, I think I need to use "ALLSELECTED" function, but I am having trouble figuring out how to use it in a measure to filter the table with since I am not calculating any aggregations. Anyone have ideas?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @smileamile2 

 

Create two another identical tables.

11.PNG

 

date 2 = ALLSELECTED('date'[date])

 

Apply two tables of date for two slicer respectively.

22.PNG

Then create a measure.

 

slicer_date = IF(SELECTEDVALUE('date'[date]) in VALUES('date 1'[date]) || SELECTEDVALUE('date'[date]) in VALUES('date 2'[date]),1,0)

 

44.PNG

 

Finally, put the measure on the data filter.

555.PNG

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

 

 

Best Regards

Community Support Team _ Polly

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @smileamile2 

 

Create two another identical tables.

11.PNG

 

date 2 = ALLSELECTED('date'[date])

 

Apply two tables of date for two slicer respectively.

22.PNG

Then create a measure.

 

slicer_date = IF(SELECTEDVALUE('date'[date]) in VALUES('date 1'[date]) || SELECTEDVALUE('date'[date]) in VALUES('date 2'[date]),1,0)

 

44.PNG

 

Finally, put the measure on the data filter.

555.PNG

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

 

 

Best Regards

Community Support Team _ Polly

amitchandak
Super User
Super User

@smileamile2 , As long as all other columns other than the measure you created are un summarized, measure will filter the table 

 

With independent date table

example

measure =
VAR _max = MAXX(allselected('Date1'),'Date1' [Date])
return
countrows(filter(Table, Table[Create Date] >=_max-7 && [Create Date] <= _max && Table[close Date] >=_max && [Close Date] <= _max +7 ))

 

 

use this measure with all other fields as un summarized in visual.

 

Or filter this value is not blank in the visual level filter

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

@amitchandak 

Well, I can't have the +-7 in the measure itself. I have relative date slicers that allow user to select any date range that can change

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.