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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
moeconsult
Helper V
Helper V

Accademic Year

Please I need help with this question below:

 

I have a table with StartDate and Enddate columns. I would like to create a Academic year column for my report usisng the start and end date columns  as my report is an academic year for reporting . My requirement is to show all values by defualt and initial report needs to be filtered  by 1st September 2020 to 31st August 2021 (the year we are in) 

 

Thanks for your help .

 

Regards,

Ola

1 ACCEPTED SOLUTION
Adescrit
Impactful Individual
Impactful Individual

I would start off by creating a calendar table.

In the Modelling tab at the top of Power BI desktop, click on "New Table", and then enter the following code:

 

Calendar =
ADDCOLUMNS (
    CALENDAR (
        MIN ( 'Academic Years'[Start Date] ),
        MAX ( 'Academic Years'[Start Date] )
    ),
    "DateAsInteger", FORMAT ( [Date], "DDMMYYYY" ),
    "Year", YEAR ( [Date] )
)

 

Note I'm assuming here that your start date and end date columns are in a separate table called 'Academic Years'.

 

This will create a new table in which the first column is a list of dates between the start of the first academic year and the end of the final academic year in your initial 'Academic Years' table.

 

Now you can create a new column in your Calendar table that identifies which academic year each date falls into.

 

Academic Year = 
IF (
    MONTH('Calendar'[Date]) <= 9,
    "AY"
        & RIGHT( VALUE('Calendar'[Year]),2)-1 & "/" & RIGHT( VALUE('Calendar'[Year]),2),
    "AY"
        & RIGHT( VALUE('Calendar'[Year]),2) & "/" & RIGHT( VALUE('Calendar'[Year]),2) + 1
)

 

You can then use this column as a filter to select which academic year you would like to view. (Ensure the 'Calendar' table is connected to the data you are filtering first.


Did I answer your question? Mark my post as a solution!
My LinkedIn

View solution in original post

2 REPLIES 2
Adescrit
Impactful Individual
Impactful Individual

I would start off by creating a calendar table.

In the Modelling tab at the top of Power BI desktop, click on "New Table", and then enter the following code:

 

Calendar =
ADDCOLUMNS (
    CALENDAR (
        MIN ( 'Academic Years'[Start Date] ),
        MAX ( 'Academic Years'[Start Date] )
    ),
    "DateAsInteger", FORMAT ( [Date], "DDMMYYYY" ),
    "Year", YEAR ( [Date] )
)

 

Note I'm assuming here that your start date and end date columns are in a separate table called 'Academic Years'.

 

This will create a new table in which the first column is a list of dates between the start of the first academic year and the end of the final academic year in your initial 'Academic Years' table.

 

Now you can create a new column in your Calendar table that identifies which academic year each date falls into.

 

Academic Year = 
IF (
    MONTH('Calendar'[Date]) <= 9,
    "AY"
        & RIGHT( VALUE('Calendar'[Year]),2)-1 & "/" & RIGHT( VALUE('Calendar'[Year]),2),
    "AY"
        & RIGHT( VALUE('Calendar'[Year]),2) & "/" & RIGHT( VALUE('Calendar'[Year]),2) + 1
)

 

You can then use this column as a filter to select which academic year you would like to view. (Ensure the 'Calendar' table is connected to the data you are filtering first.


Did I answer your question? Mark my post as a solution!
My LinkedIn

Thanks for your help, But am not sure if this possible, I want my report to be filtered by Academic Year (Periods) and also an exact date for example, if I want my report to display student that attended a session between 01/01/2020 and 31/01/2020. 

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.