Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
I have ireegular date values. For example, data before 2023(2021,2021,etc.) only contains December data (integrated), and for 2023, only September and October exist. the cumulative population graph trend is drawn well, but I'm trying to see the rate of change by vomparing the values with the previous month's data, but the dax function doesn't work. It seems to be more difficult because the date values are not sequential. I just need to know the rate of change compared to the previous value of the existing date. Could you please five me some tips?
I wort my own dax function. CurrentDate, currentPopulation, and PreviousDate are returnde well, but only the PreviousPopulation value is not returned well. Why?
---------------------------------------------------------------------------------------
Population Change Rate =
VAR CurrentDate = SELECTEDVALUE('Table'[date])
VAR CurrentPopulation = CALCULATE(
SUM('Table'[population])
'Table'[date] = CurrentDate
)
VAR PreviousDate = CALCULATE(
MAX('Table'[date])
FILTER(
ALL('Table'),
'Table'[date] < CurrentDate
)
)
VAR PreviousPopulation = CALCULATE(
SUM('Table'[population]},
'Table'[date] = PreviousDate
)
RETURN IF(
NOT ISBLANK(PreviousPopulation),
(CurrentPopulation - PreviousPopulation) / PreviousPopulation,
BLANK()
)
------------------------------------------------------------------------------------------
Please understand that I am not good at English beacuse I am Korean.
Solved! Go to Solution.
Hi,
I am not sure how your semantic model looks like, but please try something like below whether it suits your requirement.
Population Change Rate =
VAR CurrentDate =
SELECTEDVALUE ( 'Table'[date] )
VAR CurrentPopulation =
CALCULATE ( SUM ( 'Table'[population] ), 'Table'[date] = CurrentDate )
VAR PreviousDate =
CALCULATE (
MAX ( 'Table'[date] ),
FILTER ( ALL ( 'Table' ), 'Table'[date] < CurrentDate )
)
VAR PreviousPopulation =
CALCULATE (
SUM ( 'Table'[population] ),
FILTER ( ALL ( 'Table' ), 'Table'[date] = PreviousDate )
)
RETURN
IF (
NOT ISBLANK ( PreviousPopulation ),
( CurrentPopulation - PreviousPopulation ) / PreviousPopulation,
BLANK ()
)
Hi,
I am not sure how your semantic model looks like, but please try something like below whether it suits your requirement.
Population Change Rate =
VAR CurrentDate =
SELECTEDVALUE ( 'Table'[date] )
VAR CurrentPopulation =
CALCULATE ( SUM ( 'Table'[population] ), 'Table'[date] = CurrentDate )
VAR PreviousDate =
CALCULATE (
MAX ( 'Table'[date] ),
FILTER ( ALL ( 'Table' ), 'Table'[date] < CurrentDate )
)
VAR PreviousPopulation =
CALCULATE (
SUM ( 'Table'[population] ),
FILTER ( ALL ( 'Table' ), 'Table'[date] = PreviousDate )
)
RETURN
IF (
NOT ISBLANK ( PreviousPopulation ),
( CurrentPopulation - PreviousPopulation ) / PreviousPopulation,
BLANK ()
)
Thank you soooooooooo much!!!!!!!!!!!!!!!!!!!!
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |