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 tried to modify the quick measure (Year over year change). Original DAX looks like:
Taxi Out Time, min YoY% =
VAR __PREV_YEAR = CALCULATE(SUM('QAR data'[Taxi Out Time, min]), DATEADD('DATES'[DATE_FULL], -1, YEAR))
RETURN
DIVIDE(SUM('QAR data'[Taxi Out Time, min]) - __PREV_YEAR, __PREV_YEAR)
I decided to make some modification:
Taxi Out Time (sum), min YoY% =
VAR a = SUM('QAR data'[Taxi Out Time, min])
VAR prev_a = CALCULATE(a, SAMEPERIODLASTYEAR(DATES[DATE_FULL]))
RETURN
DIVIDE(a - prev_a, prev_a)
But new formula didn`t work well:
(the first column is a month name in Russian)
Please help to understand, what am I doing wrong?
Variables in DAX are CONSTANTS. Once calculated, they are NEVER re-calculated.
@Anonymous , Make share months are coming from Dates Table
This year = SUM('QAR data'[Taxi Out Time, min])
last Year = CALCULATE([This year], SAMEPERIODLASTYEAR(DATES[DATE_FULL]))
Change % =
DIVIDE([This year] - [last Year], [last Year])
Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.
Hi, @Anonymous , the issue results from use of variable a in your measure; In fact, variables in DAX are NOT THAT VARIABLE as expected!
In DAX, variables are calculated within the scope in which they are written, and then the result of them is stored and used in the rest of the expression.
You might want to refer to an article on this subject for more details.
A straightforward way is to create a measure a = SUM('QAR data'[Taxi Out Time, min]), and you can reference it in another measure.
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |