A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
This problem is caused by fomula's used in the original template.
For example, AprSun1 function was defined as
=DATEVALUE("4/1/"&TheYear)-WEEKDAY(DATEVALUE("4/1/"&TheYear))+1
This works perfectly on a PC with "Regional Settings" as United States, because DATEVALUE function expects mm/dd/yyyy format date string.
It breaks on Regions where date format is dd/mm/yyyy
A robust formula for AprSun1 should be
=DATEVALUE("1-Apr-"&TheYear)-WEEKDAY(DATEVALUE("1-Apr-"&TheYear))+1
I hope somebody from MS will be able to fix this in the template file.
Regards,
- Aung