The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello!
I am trying to create a dynamic calendar table with a start date of 01/01/2017 and the end date always the end of the current year, but I just keep getting it wrong. The one I use now goes to today only and I cant seem to update it properly. Any help would be VERY appreciated!
THANK YOU!
Solved! Go to Solution.
Hi Eden,
Try this DAX , Create 'new table' under modeling
Calender = CALENDAR(
Date(2017,01,01),
Date(YEAR(today()),12,31)
)
You can additional columns by using ADDCOLUMN() function or just by adding new column (Right click--> New column) in the Calendar directly
Hope if would help
Thanks
Sukhi
Hi Eden,
Try this DAX , Create 'new table' under modeling
Calender = CALENDAR(
Date(2017,01,01),
Date(YEAR(today()),12,31)
)
You can additional columns by using ADDCOLUMN() function or just by adding new column (Right click--> New column) in the Calendar directly
Hope if would help
Thanks
Sukhi
Thank you thank you!!