Forum Discussion
ealiisl
1 year agoNew Member
How to make Lists from Date column.
I have a one column with dates from year 2021 to year 2024. From this, how can i make seprate columns for each year.
Bibiano_Geraldo
Super User
1 year agoHi,
Create a new Calculated column by this DAX Code:
YearColumn = YEAR('YourTable'[DateColumn])
Or by:
YearColumn = FORMAT('YourTable'[DateColumn],"Yyyy")