Forum Discussion
spagad6263
2 years agoPost Patron
DAX question
Hi, I created a measure to calculate [Request] total for those "Non - Special" branches. It works ok for all branches, but not with the branch slicer, i.e, when I select a particular branch, the ...
- 2 years ago
spagad6263 try this:
meas_Request_Branch = CALCULATE ( SUM(Data[Request]), KEEPFILTERS ( Data[Branch] <> "Special" ) )
parry2k
2 years agoSuper User
spagad6263 try this:
meas_Request_Branch = CALCULATE
(
SUM(Data[Request]),
KEEPFILTERS ( Data[Branch] <> "Special" )
)