Forum Discussion
Really need some help... Date Table School Terms
Have searched the forums but not found anything that helps me out. Here is my issue, I need a date table that understands school terms and works with these in a similar way to quarters in a normal date table, is understands which quarter is before/after another...
I have managed to be able to define a custom date table to get weeks numbered correctly, ie week beginning 3rd Sept is week 1, however it needs to go further...
I need to be able to define a date table that understands which term each date belongs to, ie Autumn, Spring and Summer. Each year the dates will change and there is no standard logic to the number of days per term.
| Term | Order | Start date | End date |
| Autumn | 1 | 03/09/2020 | 04/01/2021 |
| Spring | 2 | 05/01/2021 | 18/04/2021 |
| Summer | 3 | 19/04/2021 | 31/08/2021 |
I need to be able to do calculations that look at "previous term", in the way that previous year/quarter would work.
For example I have a fact table with attendance marks for each date, so I can count how many present marks for a term and work out the percentage attendance, based on a slicer which has the terms in (have a measure which picks up current selection). I can then display this in a table visual; however the bit where I struggle is trying to also show the previous terms data based on currently selected term from the slicer in the same visual.
Any suggestions would be much appreciated!!! Thanks in advance ๐
BLAWHEEM1 , Make sure you do it in the Separate term table.
Create a Rank on start Date
New column
Term Rank = RANKX(all('Date'),'Date'[Start Date],,ASC,Dense)
measure example
This Term = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Term Rank]=max('Date'[Term Rank])))
Last Term = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Term Rank]=max('Date'[Term Rank])-1))
4 Replies
- amitchandak
Super User
BLAWHEEM1 , Make sure you do it in the Separate term table.
Create a Rank on start Date
New column
Term Rank = RANKX(all('Date'),'Date'[Start Date],,ASC,Dense)
measure example
This Term = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Term Rank]=max('Date'[Term Rank])))
Last Term = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Term Rank]=max('Date'[Term Rank])-1))- BLAWHEEM1
Helper I
Hi amitchandak
Sorry if being bit dense, new to all this and self taught....
When you say do it in separate term table, are you saying I should have a table per the post which just shows the term dates, ie this one:
Term Order Start Date End Date Autumn 1 03/09/2020 04/01/2021 Spring 2 05/01/2021 18/04/2021 Summer 3 19/04/2021 31/08/2021 Thanks for taking time to reply!
- v-zhenbw-msft
Community Support
Hi BLAWHEEM1 ,
Sorry for that we are not clear about your issue.
Do you want to expand the date between start date and end date?
If yes, please refer the following steps.
1. Create a date table.
Date table = CALENDAR(MIN('Table'[Start date]),MAX('Table'[End date]))2. Then create a result table.
Result Table = SUMMARIZE( FILTER( CROSSJOIN('Date table','Table'), 'Table'[Start date]<='Date table'[Date] && 'Table'[End date]>='Date table'[Date] ), 'Table'[Term], 'Table'[Order], 'Date table'[Date])If it doesnโt meet your requirement, could you please show the exact expected result based on the table that you have shared?
It will be helpful if you can show us the exact expected result based on the tables.
Please upload your files to OneDrive For Business and share the link here. Please don't contain any Confidential Information or Real data in your reply.
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
BTW, pbix as attached.
- BLAWHEEM1
Helper I
Thanks v-zhenbw-msft
Probably not been very clear! I have moved on slightly and managed to create my date table with custom hierarchy, but have slightly different issue with measures.
Please see later post below - would be grateful for any insight as I will have to repeat this example with a variety of data showing currently selected and previous term side by side.
Thanks again!