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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
joshcomputer1
Helper V
Helper V

filter not changing based on page level filter

I have a month slicer pointing to Date[Monthshort] in my Date table. This shows the 3 letter month name.  It is currently showing all 12 months.  I am using a calculated column called "IsLastSixMonths" to determine if the date in Dataset[ContactDate] is in the last six months. This results to True/False and updates dynamically based on today's date.  I have this as a filter on the page visual, and everything else on the page is filtering correctly. How can I get my filter visual to only show the six month window?  

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@joshcomputer1,

In your scenario, create the calculated column in the Date table instead of the DataSet table, then drag the calculated column to page level filter, this way, the month slicer will be filtered correctly.

IsLastSixMonth1 = VAR MonthDiff = IF ( 'Date'[Date]<= TODAY (), - DATEDIFF ( 'Date'[Date], TODAY (), MONTH ), DATEDIFF ( TODAY (), 'Date'[Date], MONTH ) ) RETURN IF ( MonthDiff >= -6 && MonthDiff <= -1, TRUE () )  




Regards,
Lydia

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@joshcomputer1,

In your scenario, create the calculated column in the Date table instead of the DataSet table, then drag the calculated column to page level filter, this way, the month slicer will be filtered correctly.

IsLastSixMonth1 = VAR MonthDiff = IF ( 'Date'[Date]<= TODAY (), - DATEDIFF ( 'Date'[Date], TODAY (), MONTH ), DATEDIFF ( TODAY (), 'Date'[Date], MONTH ) ) RETURN IF ( MonthDiff >= -6 && MonthDiff <= -1, TRUE () )  




Regards,
Lydia

Anonymous
Not applicable

@joshcomputer1,

I test the scenario as yours and can’t reproduce your issue. I create the calculated column using the DAX below, and put it to page level filter and set its value to True, the month slicer is filtered correctly.

IsLastSixMonths = 
VAR Datediff =
    1
        * ( 'Calendar'[DateKey] - TODAY () )
RETURN
    SWITCH (
        TRUE,
        AND ( Datediff <= 0, Datediff >= -180 ), TRUE(),
        Datediff < 180, FALSE()
    )


Would you please share your PBIX file for us to analyze? You can upload PBIX file to OneDrive, and send me the shared link of the PBIX file via Private message.

Regards,
Lydia


Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.