Can't filter 3 or more criteria, need help

scr5jo

New Member
Joined
Nov 8, 2013
Messages
11
Hi Guys,

I'm trying to filter with 3 criteria and PowerBi says it can't filter more than 2.
How can I solve this issue?

Here is the code, and I'm trying to just sum a total to the open purchase requisitions.

Current PurReqs =
VAR Material = SELECTEDVALUE(PurReqs[Material])
return
CALCULATE(
SUMX( PurReqs, PurReqs[Qty]),
FILTER(
ALL(PurReqs[Material] ,PurReqs[Category], PurReqs[SchedDate]),
PurReqs[Material] = Material ,
PurReqs[Category] = "PurReqs",
PurReqs[SchedDate] <= TODAY())
)

Thanks!
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
try this:

Excel Formula:
Current PurReqs =
VAR Material = SELECTEDVALUE(PurReqs[Material])
return
CALCULATE(
SUMX( PurReqs, PurReqs[Qty]),
FILTER(
ALL(PurReqs[Material] ,PurReqs[Category], PurReqs[SchedDate]),
PurReqs[Material] = Material &&
PurReqs[Category] = "PurReqs"&&
PurReqs[SchedDate] <= TODAY())
)
 
Upvote 0

Forum statistics

Threads
1,223,702
Messages
6,173,936
Members
452,539
Latest member
delvey

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top