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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
die_kruzen
Frequent Visitor

Retaining list while filtering

Hello all. Hoping to get some thoughts on an issue I am having. I have visual that draws from three, different tables. If I filter via the filter panel on column two, using dates greater than 9/1/2023 two entries disappear leaving only the top row. What I would like is that all rows remain and the 5/1/2023, 8/22/2023 values are removed. Is that possible?

 

Thanks all.

 

A10/20/20235
B5/1/202320
C8/22/202315

 

After filtering

A10/20/20235
B 20
C 15

 

 

2 REPLIES 2
die_kruzen
Frequent Visitor

@amitchandak  - thank you for the quick response. I am going to give this a try tomorrow at the office (don't have PBI at home). Also, thanks for passing along the youtube video. Always good to have another video option!

amitchandak
Super User
Super User

@die_kruzen , Create a measure

Max(Table[Date]) +  0

 

and try

 

Or have disconnected data table and create a filter on that

 

and use measure like 

 

//Date1 is independent Date table
new measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = minx(allselected(Date1),Date1[Date])
return
If( Max('Table'[Date]) >=_min && Max('Table'[Date]) <=_max, Max('Table'[Date]) &"", "" )

 

 

Need of an Independent/disconnected Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.