financial dates

Public Schedule Face-to-Face & Online Instructor-Led Training - View dates & book

Forum home » Delegate support and help forum » Microsoft Power BI training and help » Financial Dates

Financial Dates

resolvedResolved · Low Priority · Version 365

Financial Dates

Please can you let me know how I can incorporate Financial dates into Power BI (May to Apr year end)? Thanks!

RE: Financial Dates

Hi Jess,

Thank you for the forum question.

Thank you for the nice feedback.

On the course we worked with a fixed date table created in Excel. On the DAX course we create a dynamic date table by DAX. This is a more efficient way of working with Power BI date tables.



Here’s how you can incorporate a financial year that runs from May to April in Power BI:

Create a Date Table:
Go to the “Modeling” tab in Power BI Desktop.
Select “New Table” and enter the following DAX formula to create a date table that spans your desired date range:
DateTable = CALENDAR(DATE(2023, 5, 1), DATE(2024, 4, 30))

Add Fiscal Year Columns:
Add columns to your date table to define the fiscal year, fiscal quarter, and fiscal month. Here are some example DAX formulas:
FiscalYear = IF(MONTH([Date]) >= 5, YEAR([Date]), YEAR([Date]) - 1)
FiscalMonth = IF(MONTH([Date]) >= 5, MONTH([Date]) - 4, MONTH([Date]) + 8)
FiscalQuarter = "Q" & ROUNDUP(FiscalMonth / 3, 0)

Sort the Fiscal Months:
Ensure that the fiscal months are sorted correctly by creating a custom column for sorting:
FiscalMonthSort = MONTH([Date]) + IF(MONTH([Date]) >= 5, -4, 8)

Use the Date Table in Your Reports:
Link your date table to your data model and use the fiscal year columns in your visuals and calculations.
Create Time Intelligence Measures:
Utilize the fiscal year columns to create time intelligence measures, such as year-to-date or quarter-to-date calculations.
By following these steps, you can align your financial reporting with your May to April fiscal year in Power BI.


Kind regards

Jens Bonde
Microsoft Office Specialist Trainer

Tel: 0207 987 3777
STL - https://www.stl-training.co.uk
98%+ recommend us

London's leader with UK wide delivery in Microsoft Office training and management training to global brands, FTSE 100, SME's and the public sector

 

Training courses

 

Welcome. Please choose your application (eg. Excel) and then post your question.

Our Microsoft Qualified trainers will then respond within 24 hours (working days).

Frequently Asked Questions
What does 'Resolved' mean?

Any suggestions, questions or comments? Please post in the Improve the forum thread.


 

Power BI tip:

Master DAX (Data Analysis Expressions)

DAX is the formula language used in Power BI for creating custom calculations and aggregations. Invest time in learning DAX to unlock the full potential of Power BI. Understand functions like CALCULATE, FILTER, and SUMX, as they are fundamental for creating complex calculations and measures.

View all Power BI hints and tips


Server loaded in 0.08 secs.