Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi team,
I have a requirement for the dynamic year column where based on the selected year, it should show the previuos six years.
If the seleted year is 2030, then it should reflect 2024,2025,2026,2027,2028,2029.
If the selected year is 2029, it should show 2023,2024,2025,2026,2027,2028.
Can you please help on this. Thank you!
@tamerj1 @Ritaf1983 @Ahmedx @Greg_Deckler @amitchandak @Fowmy
Solved! Go to Solution.
Hi @Usha_pk ,
Based on your problems, I created a simple table.
First of all I think you can create a Measure to fulfill your needs, you can have a try.
Dynamic Year =
VAR SelectedYear = YEAR(TODAY())
RETURN
IF(
VALUES('Year'[Date]) IN { SelectedYear, SelectedYear - 1, SelectedYear - 2, SelectedYear - 3, SelectedYear - 4, SelectedYear - 5 },
1,
0
)
You can also select New group under Slicer.
This will also give you the results you're looking for.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Usha_pk ,
Based on your problems, I created a simple table.
First of all I think you can create a Measure to fulfill your needs, you can have a try.
Dynamic Year =
VAR SelectedYear = YEAR(TODAY())
RETURN
IF(
VALUES('Year'[Date]) IN { SelectedYear, SelectedYear - 1, SelectedYear - 2, SelectedYear - 3, SelectedYear - 4, SelectedYear - 5 },
1,
0
)
You can also select New group under Slicer.
This will also give you the results you're looking for.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I am not sure how your semantic model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
WINDOW function (DAX) - DAX | Microsoft Learn
Sales measure: =
SUM( Sales[Sales] )
Sales last 6 years: =
VAR _t =
WINDOW ( -5, REL, 0, REL, ALL ( Period[Year] ), ORDERBY ( Period[Year], ASC ) )
VAR _condition =
COUNTROWS ( _t ) = 6
RETURN
IF ( _condition, CALCULATE ( [Sales measure:], _t ) )
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
@Jihwan_Kim
Thanks for your reply. But this is not exactly my requirement. Let me explain you clearly.
I need a dynamic year column, where based on the year selected it should reflect the previous six years.
For example:
If selected year is 2028, then the dynamic year should be 2022, 2023, 2024, 2025, 2026, 2027
Thank you!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
97 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
163 | |
110 | |
61 | |
51 | |
40 |