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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
EstherBR
Helper II
Helper II

Apply only start date from an slicer to a matrix

Hi, I have a matrix with a date slicer:

EstherBR_0-1762873316858.png

I would like that when the user filters the slicer, the matrix ignores the End date of the slicer. In other words the matrix only has tobe filtered by en start date. The slicer settings cannot be changed. 

 

Thank you so much!

16 REPLIES 16
wc123
Helper I
Helper I

Hello, What is causing you to not be able to edit the slicer settings. You will need to go into the slicer settings and select what the image below shows. you can then adjust the slicer size to hide the end date portion of the filter.

wc123_1-1763484830484.png

 

Hi @wc123 , The issue is that I cannot change the slicer settings.

Hi @EstherBR,

Could you please confirm whether the issue has been resolved? If not, kindly share the sample data or PBIX file so that we can assist you further in resolving it.

 

Thank you.

Hi @EstherBR,

Please provide sample Pbix that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information. Do not include anything that is unrelated to the issue or question.
Please show the expected outcome based on the sample pbix you provided.

Need help uploading data? 

https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

 

Thank you.

Hi @v-saisrao-msft , the issue is not solved. How can I attach a PBIX file to my reply? Thanks

 

v-saisrao-msft
Community Support
Community Support

Hi @EstherBR,

Have you had a chance to review the solution we shared earlier? If the issue persists, feel free to reply so we can help further.

 

Thank you.

EstherBR
Helper II
Helper II

Hi @mh2587 , still not working 😞

EstherBR_0-1762945854794.png

EstherBR_1-1762945865420.png

 

 

Hi @EstherBR,

Thank you @mh2587, for yor insights.

I've reproduced the issue using sample data and got the same output on my side. I’ve attached the PBIX file for your reference so you can review the setup and results.

Total Sales (Only Start Date) = 
VAR _StartDate =
    CALCULATE (
        MIN ( 'Date'[Date] ),
        ALLSELECTED ( 'Date' )
    )
RETURN
CALCULATE (
    [TotalSales],
    KEEPFILTERS ( 'Date'[Date] >= _StartDate )
)

 

Thank you.

Hi @v-saisrao-msft , Unfortunately, it still does not work as it filters by the start and end date and I only wnat to filter by the start date.

EstherBR_0-1763482031795.png

 

EstherBR
Helper II
Helper II

Hi @mh2587 , the slicer settings cannot be changed. Thanks

Create a measure like below and put it in matrix's value

Total Sales (Only Start Date) = //Adjust with your table name and measure
VAR _StartDate =
    CALCULATE (
        MIN ( 'Date'[Date] ),
        ALLSELECTED ( 'Date' )
    )
RETURN
CALCULATE (
    [Total Sales],
    FILTER (
        ALL ( 'Date' ),
        'Date'[Date] >= _StartDate
    )
)

Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



Hi @mh2587 , The slicer filters correctly the table, but now the sum of sales is not filtered by year and month. Thanks!

EstherBR_0-1762875903575.png

 

Replace all() with allselected() like below try this

Total Sales (Only Start Date) = //Adjust with your table name and measure
VAR _StartDate =
    CALCULATE (
        MIN ( 'Date'[Date] ),
        ALLSELECTED ( 'Date' )
    )
RETURN
CALCULATE (
    [Total Sales],
    FILTER (
        ALLSELECTED ( 'Date' ),
        'Date'[Date] >= _StartDate
    )
)




Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



Thanks @mh2587 , Unfortunately the new measure does not work either 😞

EstherBR_0-1762937683988.png

 

Replace the return part with following 

CALCULATE (
    [Total Sales],
    FILTER (
        KEEPFILTERS ( ALL ( 'Date'[Date] ) ),
        'Date'[Date] >= _StartDate
    )
)

Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



mh2587
Super User
Super User

You can disable this in Format section in slicer setting

mh2587_0-1762873901031.png

 


Did I answer your question? If so, please mark my post as a solution!


Proud to be a Super User!




LinkedIn Icon
Muhammad Hasnain



Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors
Top Kudoed Authors