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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

DAX not filtering from slicers

Hi,

 

I have the following measure that is counting the correct number of projects, but when I select slicers the total figures do not change. I'm sure a quick fix but any help is appreicated, thanks!

 

ProjectsO.O.D =
VAR Precontolive =
    CALCULATE (
        DISTINCTCOUNT ( Project[ProjectID] ),
        Project[ProjectStartDate] < TODAY (),
        'Project Status'[ProjectStatusName] IN {"Pre-Contract"}
    )

VAR Livetodef =
    CALCULATE (
        DISTINCTCOUNT ( Project[ProjectID] ),
        Project[ProjectCompletionDate] < TODAY (),
        'Project Status'[ProjectStatusName] IN {"Live"}
    )

VAR Defectstoarc =
    CALCULATE (
        DISTINCTCOUNT ( Project[ProjectID] ),
        Project[ProjectCompletionDate] < EDATE ( TODAY (), -12 ),
        'Project Status'[ProjectStatusName] IN {"Defects"}
    )

RETURN

Precontolive + Livetodef + Defectstoarc
1 REPLY 1
lbendlin
Super User
Super User

Please provide more details.  How are the slicer columns wired into your overall data model? Do they even have a chance to impact the result?

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.