Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

DAX help - REMOVEFILETER()

Hi all,   Need your help in this.  I have below data in the Table Visual, coming from multiple facts and dimentions   Customer  ID Customer Name Policy Number Purchaser Invoice Number Ou...
  • Anonymous's avatar
    Anonymous
    4 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.