Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
We have a drill through report for account details and in that we wanted to show the running count of account number by account holder name. I tried using Quick measure but in that way its not showing the drill through report. Any suggestions ?
Thanks you in advance
Solved! Go to Solution.
Hi @sameer_K ,
You can try the following steps:
1. Create a calculated column.
Column =
RIGHT('Table'[Claim Number],3)
2. create the measure.
RunningCount =
CALCULATE(
COUNTROWS('Table'),
FILTER(
ALLSELECTED('Table'),
'Table'[Bank] = MAX('Table'[Bank]) &&
'Table'[Column] <= MAX('Table'[Column])
)
)
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @sameer_K ,
You can try the following steps:
1. Create a calculated column.
Column =
RIGHT('Table'[Claim Number],3)
2. create the measure.
RunningCount =
CALCULATE(
COUNTROWS('Table'),
FILTER(
ALLSELECTED('Table'),
'Table'[Bank] = MAX('Table'[Bank]) &&
'Table'[Column] <= MAX('Table'[Column])
)
)
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please find the sample data and end result snap below
Hi @sameer_K ,
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.
Best Regards,
Clara Gong
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the reply Clara... Sample data and end results are as below
hi @sameer_K
What is a "running count of account number by account holder name"? Is that the distinct account numbers under the same accoun holder or a cumulative count over several time periods?
Hello @sameer_K ,
you create a measure to count the running accounts as follows:
Account Count = DISTINCTCOUNT(TableName[AccountNumber])
Proud to be a Super User! | |
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |