This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
Hi all,
I'm building a Customer Report and got a problem. Hope someone can help me to solve it 😞
I want to track Customer's Health. Here is my user table struture:
Col1: user's email
Col2: user's created date
Col3: user's company name
Col4: user's status (O is active, -1 is inactive)
Please kindly take a look this example
I have 01 Customer:
- Company A
- At the moment, Company A has 10 active users
- 5 users had created in Week 31
- 3 more users had created in Week 32
- 2 more users had created in Week 33
I want to know how many created users of company A.
The correct result I want to see are:
W31: 5 created users
W32: 8 created users
W33: 10 created users
But when I'm using this below DAX
= CALCULATE(DISTINCTCOUNT('Users Table'[email]),FILTER('Users Table','Users Table'[status] <> -1))
The incorrect results ares:
Week 31: 10 created user
Week 32: 10 created user
Week 33: 10 created user
(In the future, if the company A create 5 more users, the results will look like
Week 31: 15 created user
Week 32: 15 created user
Week 33: 15 created user
Week 34: 15 created user)
Please kindly help me in this issue. Thanks in advance.
Hi there,
What you are looking for is the "running Total"
You can easiliy create this whith a Quick measure in PowerBI.
Have a look here: https://docs.microsoft.com/en-us/power-bi/desktop-quick-measures
Good luck!
Robbe
Hi Robble VL, thanks for your quick response.
Please kindly take a look at these pictures in below
When I'm not using Running total Formula, the result will look like:
@Anonymous ,
So [Active Members] is a measure right? Could you show that measure? If possible, could you also share the sample data?
Regards,
Jimmy Tao
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 25 | |
| 24 | |
| 22 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 43 | |
| 41 | |
| 41 | |
| 21 | |
| 21 |