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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
srlabhe
Resolver IV
Resolver IV

Single Selection Date Slicer not working as intended

Hi Team,

I am using the trick explained at link below for selecting single date from calendar to filter the table visual in report.

https://www.linkedin.com/pulse/power-bi-single-date-picker-without-dax-torsten-wanka/ 

Everything works fine, but when I select say 11/25/2025 in Calendar and try serching an ID in Visual Level Filter pane , it shows the IDS for historical dates as well like from 11/23/2025.

But If I just select a date and export in excel I cant find the same IDS in excel export.

Any ideas why it shows data for IDs in report selected for 11/25/2025 whild Ids are for 11/23/2025?

And how to restrict the Table visual tos how data only for selected date in Date Slicer Calendar?

I tried creating DAX and apply on visual but it throws "Query out of resources error" as my query has mor ethan 1.2M recs.

 

Appreciate your help here.

1 ACCEPTED SOLUTION
srlabhe
Resolver IV
Resolver IV

Created a complex join in query based on date table and used the Date Table Date field in report and it worked well.Thanks for your help 

View solution in original post

9 REPLIES 9
srlabhe
Resolver IV
Resolver IV

Created a complex join in query based on date table and used the Date Table Date field in report and it worked well.Thanks for your help 

v-karpurapud
Community Support
Community Support

Hi @srlabhe 

I wanted to check if you’ve had a chance to review the information provided. If you have any further questions, please let us know. Has your issue been resolved? If not, please share more details so we can assist you further.

Thank You.

Rufyda
Resident Rockstar
Resident Rockstar

Quick fix for Single Date Slicer in Power BI:

Use a page-level filter instead of a visual-level filter:

Remove any ID filters from the visual.

Add Date[Date] as a page-level filter and select the desired date.

 Ensures the table shows only rows for the selected date without heavy DAX calculations.


Source:
Microsoft Power BI Community – Single Selection Date Slicer

Did it work? ✔ Give a Kudo • Mark as Solution – help others too!
Regards,
Rufyda Rahma | Microsoft MIE

Thanks but we need a Date Slicer on top tos elect a single date as part fo requirement

Hi @srlabhe 

Thank you for contacting the Microsoft Fabric community forum.
 

Seeing extra IDs in the visual-level filter list is normal when using a disconnected or trick-based single-date slicer, because Power BI shows all distinct IDs in the column, not only the ones for the selected date. The table visual and Excel export are still correct they reflect only the chosen date.

To make the single-date filter work properly and avoid resource errors, use a clean date-only column in your fact table and connect it to a proper marked Date table with an active relationship. This ensures the slicer filters the fact table accurately. If you need to search IDs, use an ID slicer instead of the visual-level filter, as it respects the date context and is lighter on performance.

I hope this information is helpful. If you have any further questions, please let us know. we can assist you further.

Best Regards.
 

dinesh_7780
Resolver V
Resolver V

Hi @srlabhe ,

Try below steps.

 

1.  Create this measure

 

SelectedDate =

SELECTEDVALUE('Calendar'[Date])

 

2.  Create this measure to check row date

 

ShowRow =

IF ( MAX('Fact'[Date]) = [SelectedDate], 1, 0 )

 

3. Apply it to the Table visual

 

Visual → Filters → “ShowRow” → is 1

 

This will give, table always shows only the selected date rows. No heavy calculation. No need for complex DAX.

No need to modify the date table trick.

 

If my response as resolved your issue please mark it as solution and give kudos.

This throws an error "Query out of resources error"

Kedar_Pande
Super User
Super User

@srlabhe 

 

Remove visual-level ID filter

Use page-level filter on Date = slicer selection instead

This forces table to respect single date strictly

 

If this answer helped, please click Kudos or Accept as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande

amitchandak
Super User
Super User

@srlabhe , If date and table is connected it should show that data , If not a measure like this should help 

 

countrows(filter(Table, Table[Date] = selecteddate(Date[Date]) ) ) 

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.