Forum Discussion
BugmanJ
Helper V
3 years agoUsing both ALL and ALLEXCEPT together?
Hello All, Simplistic table: YEAR COMPANY OrderNumber [YEAR] is linked to a Calander Table which also has [YEAR] I have two slicers on the page, YEAR and COMPANY I am trying to ...
BugmanJ
Helper V
3 years agotamerj1 / ValtteriN
Slight variance on the above. In the Data above, lets say I have an extra coloumn called [TIMETOPRODUCE] but I want that to filter out orders less then 155
NumberofOrders =
CALCULATE (
DISTINCTCOUNT ( 'Table'[OrderNumber] ),
ALLEXCEPT ( 'Table', 'Calendar'[Date] ),
FILTER ( 'Table'[TimeToProduce]<155)
)
Doesnt work, any ideas?
J