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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I want to filter different tables which gets data from different data sources which doesn't have any relatiuonship. User will give the input in Slicer visual. From the selected value, I need to do some DAX expression and filter out the table visuals.
For Eg. Consider slicer has different dates and other tables has date column but none of the columns interlinked.
In that user will select 2 dates, According to that other visuals should get input from slicer and filter the tables.
In Qlikview, they use some Set Analysis function to get input from visuals. I want to make sure Power BI can support the same or not.
Solved! Go to Solution.
Hi @Nareshbaabu,
The scenario is supported in Power BI. You can simply create a measure, and use it to apply a visual level filter(Count of Rows is greater than 0) on your table visuals. The formula(DAX) should be similar like below.
Count of Rows =
VAR minDate =
MIN ( 'Date'[Date] )
VAR maxDate =
MAX ( 'Date'[Date] )
RETURN
CALCULATE (
COUNTROWS ( Table1 ),
FILTER ( Table1, ( Table1[Date] <= maxDate && Table1[Date] >= minDate ) )
)
In addition, here is a similar thread for your reference. ![]()
Regards
Hi @Nareshbaabu,
The scenario is supported in Power BI. You can simply create a measure, and use it to apply a visual level filter(Count of Rows is greater than 0) on your table visuals. The formula(DAX) should be similar like below.
Count of Rows =
VAR minDate =
MIN ( 'Date'[Date] )
VAR maxDate =
MAX ( 'Date'[Date] )
RETURN
CALCULATE (
COUNTROWS ( Table1 ),
FILTER ( Table1, ( Table1[Date] <= maxDate && Table1[Date] >= minDate ) )
)
In addition, here is a similar thread for your reference. ![]()
Regards
Hi @Nareshbaabu,
Great to help! If the solution works, could you accept it as solution to close this thread? ![]()
Regards
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!