Forum Discussion
DAX help - REMOVEFILETER()
- Anonymous4 years ago
Hi Anonymous ,
I think you can use the ALLEXCEPT function instead of the REMOVEFILTER function.
Reference: ALLEXCEPT function (DAX) - DAX | Microsoft Docs
The measure can be modified as
Unallocated amount measure = CALCULATE ( SUM ( 'Table'[Unallocated amount] ), ALLEXCEPT ( 'Table', 'Table'[Customer Name] ) )If you are still confused, please share your pbix with me and pay attention to hiding private data.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
I think you can use the ALLEXCEPT function instead of the REMOVEFILTER function.
Reference: ALLEXCEPT function (DAX) - DAX | Microsoft Docs
The measure can be modified as
Unallocated amount measure =
CALCULATE (
SUM ( 'Table'[Unallocated amount] ),
ALLEXCEPT ( 'Table', 'Table'[Customer Name] )
)
If you are still confused, please share your pbix with me and pay attention to hiding private data.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.