Forum Discussion
Calculated groups using Tabular Editor
- Anonymous4 years ago
HI pbi_wannabe_exp,
I think this scenario may be related to the 'all' function, it will ignore all filters on the table so it may conflict with getting the current field value. (max function are calculated on the fixed all table records and get static result)
ALL function (DAX) - DAX | Microsoft Docs
Have you tried to create a variable and move this type of operation out of the current calculation row context?
formual = VAR currValue = MAX ( Calendar[Sprint Year CC] ) RETURN CALCULATE ( SELECTEDMEASURE (), FILTER ( ALL ( Calendar ), [Sprint Year CC] <= currValue ) )Regards,
Xiaoxin Sheng
HI pbi_wannabe_exp,
I think this scenario may be related to the 'all' function, it will ignore all filters on the table so it may conflict with getting the current field value. (max function are calculated on the fixed all table records and get static result)
ALL function (DAX) - DAX | Microsoft Docs
Have you tried to create a variable and move this type of operation out of the current calculation row context?
formual =
VAR currValue =
MAX ( Calendar[Sprint Year CC] )
RETURN
CALCULATE (
SELECTEDMEASURE (),
FILTER ( ALL ( Calendar ), [Sprint Year CC] <= currValue )
)
Regards,
Xiaoxin Sheng