Forum Discussion
Ronning
4 years agoFrequent Visitor
Two min values
Hi i want to show the min of OperationNumber for every MONumber. But as you can see i get two min values for one MONumber. I have tried this... Min OPnr = CALCULATE( MIN('ManufacturingOperatio...
- 4 years ago
If you want to get the min operation number regardless of other selected columns in the table you can try something like this
CALCULATE(MIN(ManufacturingOperation[OperationNumber]), ALLEXCEPT(ManufacturingOperation, ManufacturingOperation[MONumber]))
daniel79
4 years agoResolver II
If you want to get the min operation number regardless of other selected columns in the table you can try something like this
CALCULATE(MIN(ManufacturingOperation[OperationNumber]), ALLEXCEPT(ManufacturingOperation, ManufacturingOperation[MONumber]))