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
garythomannCoGC
Impactful Individual
Impactful Individual

FILTER path, why one method works and not the other?

As per the title why does 'path B' work and the commented out segment of code 'path A' does not?

 

 

 

EVALUATE

VAR ProgressList_Target =
    FILTER ( 
        SELECTCOLUMNS ( 
            'Measure Benefit Progress List',
            "MeasureID"   , 'Measure Benefit Progress List'[Main ID LkUpId]+0,
            "Financial Year"    , 'Measure Benefit Progress list'[Financial Year],
            "Target"      , 'Measure Benefit Progress list'[Revised]   -- value for 2027
        ),
        ---'Measure Benefit Progress list'[Financial Year] = "2026-27"   -- path A

            PATHCONTAINS ( "2026-27", [Financial Year] )   -- path B

    )

RETURN 
    ProgressList_Target

 

 

 

How to make 'path A' work?    The  https://dax.guide/filter/  guide example uses the exact same construct.

EVALUATE
FILTER (
    Customer,
    Customer[Continent] = "Europe"
)
1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @garythomannCoGC 

Please try it this way

EVALUATE
VAR ProgressList_Target =
    FILTER (
        SELECTCOLUMNS (
            'Measure Benefit Progress List',
            "MeasureID", 'Measure Benefit Progress List'[Main ID LkUpId] + 0,
            "@FinancialYear", 'Measure Benefit Progress list'[Financial Year],
            "Target", 'Measure Benefit Progress list'[Revised]
        ),
        [@FinancialYear] = "2026-27"
    )
RETURN
    ProgressList_Target

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @garythomannCoGC 

Please try it this way

EVALUATE
VAR ProgressList_Target =
    FILTER (
        SELECTCOLUMNS (
            'Measure Benefit Progress List',
            "MeasureID", 'Measure Benefit Progress List'[Main ID LkUpId] + 0,
            "@FinancialYear", 'Measure Benefit Progress list'[Financial Year],
            "Target", 'Measure Benefit Progress list'[Revised]
        ),
        [@FinancialYear] = "2026-27"
    )
RETURN
    ProgressList_Target
garythomannCoGC
Impactful Individual
Impactful Individual

Thanks @tamerj1 for your reply and code sample.  I see it clearly now ๐Ÿ˜‚

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

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

Users online (27)