Forum Discussion
Rodelaar
3 years agoRegular Visitor
Exclude value from measure
Hi, I'm quite new in the Power BI world and I'm struggling with a measure, which I can't get right. This is a very small part of the data set: GL Value 4000 1500 4090 2000 4100 4220 4...
- 3 years ago
Rodelaar
Give this a try.Some GLs = CALCULATE ( SUM ( YourTable[Value] ), KEEPFILTERS ( NOT YourTable[GL] IN {"4500","4501","7006"} ) )
jdbuchanan71
3 years agoSuper User
Rodelaar
Give this a try.
Some GLs =
CALCULATE (
SUM ( YourTable[Value] ),
KEEPFILTERS ( NOT YourTable[GL] IN {"4500","4501","7006"} )
)Rodelaar
3 years agoRegular Visitor
Thanks jdbuchanan71, I've learned something today!