Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi everyone,
I would like to get the value same period last year using one table. I have my date and measure (value) in my table. I have no date dimension. I have this formula but it is not working 😞
Can anyone help me?
Previous Year Rainfall =
VAR SelectedDate = MAX(RainfallData[Date])
VAR PreviousYearDate = DATEADD(SelectedDate, -1, YEAR)
RETURN
CALCULATE(
SUM(RainfallData[Rainfall]),
FILTER(
ALL(RainfallData),
RainfallData[Date] = PreviousYearDate
)
)
Thank you!
Solved! Go to Solution.
Hi @icdns ,
According to your statement, I think you can try code as below to create a measure.
Previous Year Rainfall =
VAR _CURDATE = MAX(RainfallData[Date])
RETURN
CALCULATE(
SUM(RainfallData[Rainfall]),
FILTER(
ALLSELECTED(RainfallData),
RainfallData[Date] = DATE(YEAR(_CURDATE)-1,MONTH(_CURDATE),DAY(_CURDATE))
)
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @icdns ,
According to your statement, I think you can try code as below to create a measure.
Previous Year Rainfall =
VAR _CURDATE = MAX(RainfallData[Date])
RETURN
CALCULATE(
SUM(RainfallData[Rainfall]),
FILTER(
ALLSELECTED(RainfallData),
RainfallData[Date] = DATE(YEAR(_CURDATE)-1,MONTH(_CURDATE),DAY(_CURDATE))
)
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@icdns why don't you have a date table? This would be really, really easy if you had a date table and marked it appropriately. Then you could use time intelligence functions and specifically SAMEPERIODLASTYEAR().
Is it possible if I will not use a date table?
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
91 | |
84 | |
76 | |
65 |
User | Count |
---|---|
145 | |
109 | |
109 | |
102 | |
96 |