Forum Discussion
Ayush001
4 years agoMicrosoft Employee
How to
# Scenarios in Exception = CALCULATE(IF(Values('Exceptions'[RCATitle])=Blank(),DISTINCTCOUNT('Exceptions'[Remark]),DISTINCTCOUNT('Exceptions'[RCATitle])),Exceptions[SnapshotDate]=MAX('Exceptions'[Sn...
- 4 years ago
Ayush001 , Try like
CALCULATE(IF( isblank(Max('Exceptions'[RCATitle])),DISTINCTCOUNT('Exceptions'[Remark]),DISTINCTCOUNT('Exceptions'[RCATitle])),
filter(Exceptions, Exceptions[SnapshotDate]=MAX('Exceptions'[SnapshotDate])))
amitchandak
4 years agoSuper User
Ayush001 , Try like
CALCULATE(IF( isblank(Max('Exceptions'[RCATitle])),DISTINCTCOUNT('Exceptions'[Remark]),DISTINCTCOUNT('Exceptions'[RCATitle])),
filter(Exceptions, Exceptions[SnapshotDate]=MAX('Exceptions'[SnapshotDate])))
- Ayush0014 years agoMicrosoft Employee
It worked.
Thanks.