Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi i have a data which will be refreshed timely
| Tuition | account | Year |
| 50 | texas | 2020-2021 |
| 100 | texas | 2021-2022 |
| 150 | texas | 2022-2023 |
| 200 | penstate | 2023-2024 |
| 250 | penstate | 2024-2025 |
| 300 | perdue | 2025-2026 |
| 350 | perdue | 2026-2027 |
| 400 | perdue | 2027-2028 |
i want to calculate the year on year change in Tuition Fee based on the Account
i tried to create a date table but it didnt work
Currently trying with this DAX Formula
Solved! Go to Solution.
Hi @gopu99 ,
You can update the formula of measure [YoY Growth] as below, and check if that is what you want.
YoY Growth =
VAR _selaccount =
SELECTEDVALUE ( 'Sheet1'[account] )
VAR _selyear =
SELECTEDVALUE ( 'Sheet1'[Year] )
VAR CurrentYearFee =
SUM ( Sheet1[Tuition] )
VAR _preyear =
CALCULATE (
MAX ( Sheet1[Year] ),
FILTER (
ALLSELECTED ( Sheet1 ),
'Sheet1'[account] = _selaccount
&& 'Sheet1'[Year] < _selyear
)
)
VAR PreviousYearFee =
CALCULATE (
SUM ( Sheet1[Tuition] ),
FILTER (
ALLSELECTED ( Sheet1 ),
'Sheet1'[account] = _selaccount
&& 'Sheet1'[Year] =_preyear
)
)
RETURN
IF (
ISBLANK ( PreviousYearFee ),
BLANK (),
( CurrentYearFee - PreviousYearFee ) / PreviousYearFee
)
Best Regards
Hi @gopu99 ,
You can update the formula of measure [YoY Growth] as below, and check if that is what you want.
YoY Growth =
VAR _selaccount =
SELECTEDVALUE ( 'Sheet1'[account] )
VAR _selyear =
SELECTEDVALUE ( 'Sheet1'[Year] )
VAR CurrentYearFee =
SUM ( Sheet1[Tuition] )
VAR _preyear =
CALCULATE (
MAX ( Sheet1[Year] ),
FILTER (
ALLSELECTED ( Sheet1 ),
'Sheet1'[account] = _selaccount
&& 'Sheet1'[Year] < _selyear
)
)
VAR PreviousYearFee =
CALCULATE (
SUM ( Sheet1[Tuition] ),
FILTER (
ALLSELECTED ( Sheet1 ),
'Sheet1'[account] = _selaccount
&& 'Sheet1'[Year] =_preyear
)
)
RETURN
IF (
ISBLANK ( PreviousYearFee ),
BLANK (),
( CurrentYearFee - PreviousYearFee ) / PreviousYearFee
)
Best Regards
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |