Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I know that my table must be wack.
So simple: trying to do a running total of "Yes" values in the "Automated" column by "created" date in the table "Tests". I have a total of 26 tests that are automated in the entire table. The calculated column keeps putting 26 for every row in the entire column.
Solved! Go to Solution.
Hey @Anonymous
Try this:
Running Total of Automated Tests =
VAR _A =
FILTER (
Tests,
Tests[Created] <= EARLIER ( Tests[Created] )
&& Tests[Automated] = "Yes"
)
RETURN
COUNTROWS ( _A )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hey, thanks for the quick reply. This was an interesting method and helped some, but it put values in for rows where the automated flag was blank and no was well for some reason.
I added to your solution to write this:
Hey @Anonymous
Try this:
Running Total of Automated Tests =
VAR _A =
FILTER (
Tests,
Tests[Created] <= EARLIER ( Tests[Created] )
&& Tests[Automated] = "Yes"
)
RETURN
COUNTROWS ( _A )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hey, thanks for the quick reply. This was an interesting method and helped some, but it put values in for rows where the automated flag was blank and no was well for some reason.
I added to your solution to write this:
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |