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.
I have a date coloumn in excel with different values, I want to create a filter based on the date values on the following way.
Filter 1: Show date with values from 1 to 13
Filter2: Show date with values from 10 to 20
Here Filter1 & Filter2 have a common subset( values 10-13)
Pls help..
Solved! Go to Solution.
I've succcessfully implement this logic by creating a new Filter table using the following DAX , and added the relationship as many to many between the source data table and FilterTable.
Thanks @Surya
FilterTable=
VAR TabA_ =
ADDCOLUMNS ( GENERATESERIES ( 1, 13 ), "filter", Filter1" )
VAR TabB_ =
ADDCOLUMNS ( GENERATESERIES ( 10, 20 ), "filter", "Filter2" )
RETURN
UNION ( TabA_, TabB_ )
I've succcessfully implement this logic by creating a new Filter table using the following DAX , and added the relationship as many to many between the source data table and FilterTable.
Thanks @Surya
FilterTable=
VAR TabA_ =
ADDCOLUMNS ( GENERATESERIES ( 1, 13 ), "filter", Filter1" )
VAR TabB_ =
ADDCOLUMNS ( GENERATESERIES ( 10, 20 ), "filter", "Filter2" )
RETURN
UNION ( TabA_, TabB_ )
Hi @Anonymous ,
You can create two calculated tables like DAX below.
Filter1 = CALCULATETABLE(DISTINCT('Table'[Date]),FILTER('Table','Table'[Val]>=1&&'Table'[Val]<=13)) Filter2 = CALCULATETABLE(DISTINCT('Table'[Date]),FILTER('Table','Table'[Val]>=10&&'Table'[Val]<=20))
Then create relationships between the three tables. Finally, you can put the Date fields of the Filter1 and Filter2 into two Slicer visuals separately.
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
you could create bins/groups with date parameters, that way you can name them too.
Please help
Create 2 calendar tables.
Create relationships between these 2 tables and your existing table.
The 2 relationships need to be one -> many / single crossfilter direction.
Create 2 relative date slicers, one for each calendar table.
Hope it works!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.