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.
I have a running total DAX calculation that works based on the Month column in my date table.
CALCULATE(
[Volume],
FILTER(
ALLSELECTED('Date'[Month]),
ISONORAFTER('Date'[Month], MAX('Date'[Month]), DESC)
)
)
I have another table in my semantic model called Fiscal period. I want the user to be able to see the running total of volume regardless of which column they are viewing the data by either Month or Fiscal Period. I could create another measure using the below code.
CALCULATE(
[Period],
FILTER(
ALLSELECTED('Fiscal Period'[Period]),
ISONORAFTER('Fiscal Period'[Period], MAX('Fiscal Period'[Period]), DESC)
)
)
However that isnt very user friendly having 2 measures. Is there a way of creating a running total measure that will work against the 'Fiscal Period'[Period] column and the 'Date'[Month] column.
Hello @philip_nwdba,
Can you please try this approach:
Unified Running Total =
CALCULATE(
[Volume],
FILTER(
ALLSELECTED('Unified Date'[Unified Date]),
ISONORAFTER('Unified Date'[Unified Date], MAX('Unified Date'[Unified Date]), DESC)
)
)
Hi, what is the unified date column?
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |