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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Need help reset count

Hi All,

I've tried to calculate the total infected and recovered users every month, the total recovered doesn't matter but the total infected when the same users are infected again after recovery the calculation doesn't work.

 

My table:

akhmad_danial_0-1633103910189.png

 

This is my DAX for it: 

CountInfected =
VAR CountIf = CALCULATE(DISTINCTCOUNT(Summary[User]),Summary[Infected]=1)
VAR CountRec = CALCULATE(DISTINCTCOUNT(Summary[User]),Summary[Recovered]=1)
RETURN
IF(CountIf=CountRec,0,CountIf-CountRec)
 
I would like Total Infected is 1 not 0
 
Many thanks if any of you can help me!
1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

I'd recommend looking at whatever the last status was.

 

Try something like this:

CountInfected =
VAR LastStatusDates =
    ADDCOLUMNS (
        VALUES ( Summary[User] ),
        "@LastStatusDate", CALCULATE ( MAX ( Summary[Date] ) )
    )
RETURN
    SUMX (
        LastStatusDates,
        LOOKUPVALUE (
            Summary[Infected],
            Summary[User], Summary[User],
            Summary[Date], [@LastStatusDate]
        )
    )

 

View solution in original post

6 REPLIES 6
parry2k
Super User
Super User

@AlexisOlson got it. I missed that. Thanks for pointing that out.

 

@Anonymous Here is a measure.

 

Total Infected = 
VAR __table = TOPN ( 1, ALLSELECTED ( 'Table' ), CALCULATE ( MAX ( 'Table'[Date] ), VALUES ( 'Table'[User] ) ), DESC )
VAR __totalInfected = 
CALCULATE ( 
    SUM ( 'Table'[Infected] ), 
    KEEPFILTERS ( __table )
) -
CALCULATE (
    SUM ( 'Table'[Recovered] ),
    KEEPFILTERS ( __table )
)
RETURN IF ( __totalInfected  > 0, __totalInfected )
   


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

It works as required. Great Support. Thanks, @parry2k 

AlexisOlson
Super User
Super User

I'd recommend looking at whatever the last status was.

 

Try something like this:

CountInfected =
VAR LastStatusDates =
    ADDCOLUMNS (
        VALUES ( Summary[User] ),
        "@LastStatusDate", CALCULATE ( MAX ( Summary[Date] ) )
    )
RETURN
    SUMX (
        LastStatusDates,
        LOOKUPVALUE (
            Summary[Infected],
            Summary[User], Summary[User],
            Summary[Date], [@LastStatusDate]
        )
    )

 

Anonymous
Not applicable

Perfect, It works as required too in different ways. Great Support. Thanks @AlexisOlson 

parry2k
Super User
Super User

@Anonymous based on the data seems like everyone is recovered, how you expected answer to be 1

 

Follow us on LinkedIn

 

Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

A is reinfected in the last row.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors