Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
RBettinelli
Frequent Visitor

FY Starting in April

hello

 

I have used the attached code to create a date table that helps me to sort and graph multiple years of fin data on one line chart. I just cant figure out what I need to change on it though, to get my Financial year adn Quarters to start on April 1st. I have attempted to edit and end up breaking the who thing.

 

MyFY2012DatesTable =
VAR myExtendedCalendar = ADDCOLUMNS(
            CALENDAR(DATE(2012,3,1),DATE(2013,3,31)),
            "Year", YEAR([Date]),
            "MonthNumber", MONTH([Date]),
            "DayNumber", DAY([Date]),
            "Month", FORMAT([Date],"mmmm"),
            "DayOfWeek", FORMAT([Date],"ddd"),
            "DayOfWeekNumber", WEEKDAY([Date]),
            "QuarterNumber", QUARTER([Date]) ,
            "Quarter", FORMAT([Date],"\QQ"),
            "WeekNumber",WEEKNUM([Date]),
            "MonthDayKey",FORMAT([Date],"mmm-dd")
            )
VAR myExtendedCalendarWithDayOfYear = ADDCOLUMNS(
            myExtendedCalendar,
            "DayNoOfYear",
            DATEDIFF ( DATE ( YEAR ( [Date] ), 1, 1 ), [Date], DAY ) + 1
            )
return myExtendedCalendarWithDayOfYear
 
 
Thanks
1 REPLY 1
Greg_Deckler
Super User
Super User

@RBettinelli You could use this: Extended Date Table (Power Query M function) - Power Query / M Code Showcase - Enterprise DNA Forum

 

Or I created a DAX 445 that can start whenever. (1) DAX Custom 445 Calendar - Microsoft Fabric Community


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Carousel June 2024

Check out the June 2024 Power BI update to learn about new features.

2
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

Top Solution Authors
Top Kudoed Authors