Forum Discussion
Anonymous
4 years agoNot applicable
Can someone help with DAX Script?
Hello everyone, I am looking for some help in writting a DAX that will give me the following result: Ideal result = calculate number of activity IDs that have changed status from Not Started to I...
CNENFRNL
4 years agoCommunity Champion
Status Transition =
SUMX (
DISTINCT ( INFO[Activity ID] ),
0 + ( CALCULATE ( DISTINCTCOUNT ( INFO[Activity Status] ) ) > 1 )
)