Forum Discussion
Thulasiram
2 years agoHelper II
Total mistake
Dear all I have the following matrix. I have the following DAX to calculate FFL_YTD_REV by adding the "Addback Dep" value. The problem to solve for me here is the "Addback dep" is a...
- 2 years ago
hI Thulasiram ,
You need to add a condition so Addback Dep is not included in the total which would be something like:
IF ( NOT ( HASONEVALUE ( 'table'[ffl major column] ) ), [mesure without addback dep], [measure with addback dep] )
danextian
2 years agoSuper User
hI Thulasiram ,
You need to add a condition so Addback Dep is not included in the total which would be something like:
IF (
NOT ( HASONEVALUE ( 'table'[ffl major column] ) ),
[mesure without addback dep],
[measure with addback dep]
)
Thulasiram
2 years agoHelper II
Yes, it is working. Thanks danextian .