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"
)
Solved! Go to Solution.
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
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
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
94 | |
79 | |
40 | |
32 | |
28 |
User | Count |
---|---|
131 | |
95 | |
80 | |
47 | |
41 |