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.
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])) )
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 ID | Customer Name | Policy Number | Purchaser | Invoice Number | Outstanding Amount | Unallocated amount |
| 4832 | Mr Andy | 536336373 | ABC | 4464034 | $4,736.00 | |
| 5865 | Mr Roy | 764383478 | SET | 4631748 | $2,183.00 |
Expected output is :
| Customer ID | Customer Name | Policy Number | Purchaser | Invoice Number | Outstanding Amount | Unallocated amount |
| 4832 | Mr Andy | 536336373 | ABC | 4464034 | $4,736.00 | -$2,910.00 |
| 5865 | Mr Roy | 764383478 | SET | 4631748 | $2,183.00 | -$2,415.00 |
Many thanks.
Regards,
Divya