Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

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_MONTHCASE_KEY
1/1/20231052
1/2/20231056
1/1/20231176
1/3/20231189
1/4/20231052

 


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's avatar
    Greg_Deckler
    Icon for Community Champion rankCommunity 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