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  IDCustomer NamePolicy NumberPurchaserInvoice NumberOutstanding AmountUnallocated amount
4832Mr Andy0~na~na -$2,910.00
4832Mr Andy536336373ABC4464034$4,736.00 
5865Mr Roy0~na~na -$2,415.00
5865Mr Roy764383478SET4631748$2,183.00 

 

Where 

Unallocated amount = 

CALCULATE([Outstanding Amount Today],

'FACT_Outstanding_Amount '[Allocated Flag] = 0)
 
Using DAX i am trying to generate  following output
Customer  IDCustomer NamePolicy NumberPurchaserInvoice NumberOutstanding AmountUnallocated amount
4832Mr Andy536336373ABC4464034$4,736.00-$2,910.00
5865Mr Roy764383478SET4631748$2,183.00-$2,415.00

 

Unallocated amount = 

CALCULATE([Outstanding Amount Today],

'FACT_Outstanding_Amount '[Allocated Flag] = 0),
REMOVEFILTERS(Customer[Customer ID]),
REMOVEFILTERS(Customer[Customer Name]),
REMOVEFILTERS(Policy[Policy Number]),
REMOVEFILTERS(Purchaser[Purchaser]),
REMOVEFILTERS(Invoice[Invoice Number])
 
But it does give me the expected output.
 
Can someone please help.
Thanks
  • 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.

3 Replies

  • Anonymous , Based on what i got try like

     


    CALCULATE([Outstanding Amount Today],
    filter('FACT_Outstanding_Amount ', 'FACT_Outstanding_Amount '[Allocated Flag] = 0),
    filter(Customer, Customer[Customer ID] =max(Customer[Customer ID])) )

    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks amitchandak  for your help.

      I tried this solution but it did not give me the expected output and shows the data as follows where there is nothing for Unalloacated amount

       

      Customer  IDCustomer NamePolicy NumberPurchaserInvoice NumberOutstanding AmountUnallocated amount
      4832Mr Andy536336373ABC4464034$4,736.00 
      5865Mr Roy764383478SET4631748$2,183.00 

       

      Expected output is :

      Customer  IDCustomer NamePolicy NumberPurchaserInvoice NumberOutstanding AmountUnallocated amount
      4832Mr Andy536336373ABC4464034$4,736.00-$2,910.00
      5865Mr Roy764383478SET4631748$2,183.00-$2,415.00

       

      Many thanks.

       

      Regards,

      Divya

  • Anonymous's avatar
    Anonymous
    Not applicable

    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.