Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Bharathi_99
Helper IV
Helper IV

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

Bharathi_99_0-1713094701994.png



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!!

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@Bharathi_99 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

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@Bharathi_99 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

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hello @Greg_Deckler ,

It's Working!!!
Thanks a lot....

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.