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

financial dates

ResolvedVersion 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

Mon 11 Nov 2024: Automatically marked as resolved.

 

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:

Query Editor Shortcuts

Ctrl + E: Open or close the Query Editor.
Ctrl + F: Find within the Query Editor.
Ctrl + H: Replace within the Query Editor.
Ctrl + D: Duplicate selected query.
Ctrl + ; (semicolon): Insert a step to create a custom column.
Ctrl + M: Enter the formula bar for the selected step.

View all Power BI hints and tips

Connect with us:

0207 987 3777

Call for assistance

Request Callback

We will call you back

Server loaded in 0.09 secs.