Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello -
I am looking for a running total DAX formula, however, most of the examples I see use a date column in the fromula. I do not have a date column. The dataset is sorted DESC by Premium. then I want to show a running total of the premium column. So let's say I have the following columns:
Acct, Acct Name, Premium
How do I create a Running Total Premium calc?
Thanks!
Solved! Go to Solution.
HI:
I'll take a guess as not too much has been shared about data model or this is a single table. I hope this helps!
You can start off with a measure that will be referenced by this calc col.
Total Premium = SUM(Table[Premium])
then add this as calculated column in your table.
Premium Amt = [Total Premium]
HI:
I'll take a guess as not too much has been shared about data model or this is a single table. I hope this helps!
You can start off with a measure that will be referenced by this calc col.
Total Premium = SUM(Table[Premium])
then add this as calculated column in your table.
Premium Amt = [Total Premium]
Yes, this works - thank you!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |