Forum Discussion
previous row calculations
- 5 years ago
ellevy try this measure for previous year
Prev Year and Week = VAR __currentYear = MAX ( Table[Year] ) VAR __prevYear = __currentYear - 1 VAR __currentWeek = MAX ( Table[Week in Year] ) RETURN CALCULATE ( SUM ( Table[Number of People] ), Table[Year] = __currentYear, Table[Week in Year] = __currentWeek )Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
ellevy try this measure for previous year
Prev Year and Week =
VAR __currentYear = MAX ( Table[Year] )
VAR __prevYear = __currentYear - 1
VAR __currentWeek = MAX ( Table[Week in Year] )
RETURN
CALCULATE (
SUM ( Table[Number of People] ),
Table[Year] = __currentYear,
Table[Week in Year] = __currentWeek
)
Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Hi parry2k
this looks promise but it only return me the same no of people meaning :
year | week in year | no of people current year | no of pepole previous year
2018 1 300 300
2018 2 400 400
the "year" is in date format (so i think the year-1 is not working there....)
- ellevy5 years agoHelper I
Ok i managed to make this work using :
CALCULATE ( SUM ( Table[Number of People] ), Table[Year] = __PREVYEAR, Table[Week in Year] = __currentWeek )and i used a numric date column that i have (meaning integer format and not date format)
how can i do the:
VAR __prevYear = __currentYear - 1using a date format column ?