cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
Solution Specialist
Solution Specialist

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
Solution Specialist
Solution Specialist

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors