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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

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
Anonymous
Not applicable

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
Anonymous
Not applicable

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.