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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

how to deduct value from calculate & filter

Struggling to figure out how to deduct some of the condition value from the sum

 

Below is the formula i'm using and error message i receive

 

"A function 'FILTER' has been used in a True/False expression that is used as a table filter expression. This is not allowed."

 

 

Actual putaway Qty = CALCULATE(SUM('In- MSEG'[In-LTAP.Dest act. qty]),FILTER(all('In- MSEG'),'In -LIKP'[Delivery]='In- MSEG'[Delivery])
-CALCULATE(sum('In- MSEG'[In-LTAP.Dest act. qty]),filter('In-LTAP','In-LTAP'[ Source bin Type]= 922 && 'In-LTAP'[Dest. Type] = "HR1"),
Filter('In-LTAP','In-LTAP'[ Source bin Type]= 922 && 'In-LTAP'[Dest. Type] = "SR1"),
Filter('In-LTAP','In-LTAP'[ Source bin Type]= 922 && 'In-LTAP'[Dest. Type] = "FL1")))
 
the data set errorthe data set error
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

I think you are missing a parenthesis in the formula before the minus sign. And you might combine the 3 filter() function in the second calculate() function.

Refer:

Actual putaway Qty = 
CALCULATE(SUM('In- MSEG'[In-LTAP.Dest act. qty]),FILTER(all('In- MSEG'),'In -LIKP'[Delivery]='In- MSEG'[Delivery]))
-CALCULATE(sum('In- MSEG'[In-LTAP.Dest act. qty]),filter('In-LTAP','In-LTAP'[ Source bin Type] = 922 && 'In-LTAP'[Dest. Type] in {"HR1","SR1","FL1"}))

 

Best Regards,

Jay

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

 

I think you are missing a parenthesis in the formula before the minus sign. And you might combine the 3 filter() function in the second calculate() function.

Refer:

Actual putaway Qty = 
CALCULATE(SUM('In- MSEG'[In-LTAP.Dest act. qty]),FILTER(all('In- MSEG'),'In -LIKP'[Delivery]='In- MSEG'[Delivery]))
-CALCULATE(sum('In- MSEG'[In-LTAP.Dest act. qty]),filter('In-LTAP','In-LTAP'[ Source bin Type] = 922 && 'In-LTAP'[Dest. Type] in {"HR1","SR1","FL1"}))

 

Best Regards,

Jay

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors