Forum Discussion
Dynamic Calendar year
Hai all, I have created a calendar table by using this Dax
Here I want to show the "This year" text in the year field
The requirement is I have a slicer like this it will show this text every year dynamically (ie. If the current year is 2022 = the YEAR Column should show " this year", if it is 2023 it should show "this year "), Down I am attaching the Dax whichever I used in power bi as the master calendar
Help me to achieve this logic
Thanks
Alan
Hi
Can not catch you almost, I understand you want to replace the number of current year by text "this year".
If so, just need creat a new column of year
Year_2 = if([YEAR column] = YEAR(TODAY()),"This Year",[YEAR column])
then put Year_2 into slicer.
1 Reply
- HoangHugoSolution Specialist
Hi
Can not catch you almost, I understand you want to replace the number of current year by text "this year".
If so, just need creat a new column of year
Year_2 = if([YEAR column] = YEAR(TODAY()),"This Year",[YEAR column])
then put Year_2 into slicer.