@Pascal_Vallet
You can probably use the WEEKNUM formula. The following formula should work.
IF(WEEKNUM(Date)>20,CONCATENATE(YEAR(Date),"-",YEAR(Date)+1),CONCATENATE(YEAR(Date)-1,"-",YEAR(Date)))
Where 20 is the week after which want to count it towards the next school year. It could be any week you want. Also within a week, it can be anyday (like Sunday or Monday). I ommited the day, so by default it’s assumed Sunday is the first day of the week.
@Pascal_Vallet
You can probably use the WEEKNUM formula. The following formula should work.
IF(WEEKNUM(Date)>20,CONCATENATE(YEAR(Date),"-",YEAR(Date)+1),CONCATENATE(YEAR(Date)-1,"-",YEAR(Date)))
Where 20 is the week after which want to count it towards the next school year. It could be any week you want. Also within a week, it can be anyday (like Sunday or Monday). I ommited the day, so by default it’s assumed Sunday is the first day of the week.
Brillant ! It works perfectly, thanks !
Brillant ! It works perfectly, thanks !
Great. Please take a minute to mark the reply as the solution. Much appreciated!