Forum Discussion
ivanuska
3 years agoAdvocate I
Applying filter on ALL function
Dear all, I am rebuilding the data model after the developer has left and I am trying to apply filter for the calculated table below: Accounts = SUMMARIZE(
ALL(CurrentSnapshots[CUSTOMER_...
- 3 years ago
I finally manage to find the solution:
Table - SUMMARIZE( FILTER( ALL (Table), SnapshotType = "Current"), rest of expression )
Anonymous
3 years agoNot applicable
Hi,
Have you tried using allexcept()?
Here is somewhat of a similar issue: https://community.powerbi.com/t5/Desktop/DAX-formula-to-combine-quot-Filter-quot-and-quot-ALL-quot/m-p/558754#M263432
ivanuska
3 years agoAdvocate I
I finally manage to find the solution:
Table -
SUMMARIZE(
FILTER( ALL (Table), SnapshotType = "Current"),
rest of expression
)