Useful Date Functions
Define Academic Year of Date - Calculated Column It's handy to be able to classify dates by academic year. On a small table, like Exclusions, I'll do this as a calculated column. Let's say I have a field called ExclusionDate with the data type date (duh!) and I want to produce an academic year in the format "2018/19". We'll make a calculated column using the following formulas: IF - (<logical test> , <value if true>, <value if false) MONTH (<date>) - returns numerical value 1 to 12 for Jan to December of the month of the selected date YEAR (<date>) returns the numerical value of the year of the selected date Basically, our formula is going to test if the date is in Sept - Dec or Jan - Aug , then perform two calculations to get the numbers either side of the "/" =IF(MONTH(Exclusions[ExclusionDate])>8,YEAR(Exclusions[ExclusionDate])&"/"&YEAR(Exclusions[ExclusionDate])-1999,YEAR(Exclusions[Exc...