Forum Discussion
Anonymous
2 years agoNot applicable
Active cases Logic
Hello all,
I have active cases count in Line chart in PBI, when I drill down to Month level I can see each Month's Active cases count, but when I drill up the whole year active cases should be the Count which is there for december month, it should not be summation all months and showing for the Year
Below is my active cases count for year 2023
when I drill up to Year level the active cases for 2023 should be the 9,627 which is there for December month
ACTIVE CASES COUNT_ = COUNT(' Active Cases Lists_'[CASE_KEY])
In my data for Active Cases Lists_ table I'll be having two columns, FIRST_DAY_MONTH , CASE_KEY
| FIRST_DAY_OF_MONTH | CASE_KEY |
| 1/1/2023 | 1052 |
| 1/2/2023 | 1056 |
| 1/1/2023 | 1176 |
| 1/3/2023 | 1189 |
| 1/4/2023 | 1052 |
Help me Thanks!!
Anonymous Try the following. PBIX is attached below signature.
Measure = VAR __LastDate = MAX('Table'[FIRST_DAY_OF_MONTH]) VAR __LastNumber = SUMX(FILTER('Table', [FIRST_DAY_OF_MONTH] = __LastDate), [CASE_KEY]) VAR __Result = IF(HASONEVALUE( 'Table'[FIRST_DAY_OF_MONTH] ), SUM('Table'[CASE_KEY]), __LastNumber) RETURN __Result
2 Replies
- Greg_Deckler
Community Champion
Anonymous Try the following. PBIX is attached below signature.
Measure = VAR __LastDate = MAX('Table'[FIRST_DAY_OF_MONTH]) VAR __LastNumber = SUMX(FILTER('Table', [FIRST_DAY_OF_MONTH] = __LastDate), [CASE_KEY]) VAR __Result = IF(HASONEVALUE( 'Table'[FIRST_DAY_OF_MONTH] ), SUM('Table'[CASE_KEY]), __LastNumber) RETURN __Result- AnonymousNot applicable
Hello Greg_Deckler ,
It's Working!!!
Thanks a lot....