Forum Discussion
cristianml
3 years agoPost Prodigy
ALLEXCEPT for multiple columns/Filters
Hi, I need help with the following DAX formula: VAR V1 = CALCULATE([Revenue],ALLEXCEPT(Revenue,Revenue[Contract])) RETURN DIVIDE([Revenue],V1) What I Need is to use different filters ...
- 3 years agoHello cristianml ,% listPrice =VAR V1 = CALCULATE([Total listPrice],ALLSELECTED(TrainingSample2[Business Segment]))RETURNDIVIDE([Total listPrice],V1,0)Please try this one.
Vilmar
3 years agoResolver I
Tente:
_01 % Revenue =
DIVIDE (
[Revenue],
CALCULATE ( [Revenue], REMOVEFILTERS ( [Revenue[Contract] ) )
)