Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Shadaiv
Helper II
Helper II

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
1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Shadaiv ,

 

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] )
)

vstephenmsft_0-1638166068164.png

 

 

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.

View solution in original post

3 REPLIES 3
v-stephen-msft
Community Support
Community Support

Hi @Shadaiv ,

 

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] )
)

vstephenmsft_0-1638166068164.png

 

 

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.

amitchandak
Super User
Super User

@Shadaiv , 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])) )

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.