I need a function to check whether a given date falls within British Summer Time or Greenwich Mean Time.
For example:
24/10/2015 is the last day of British Summer Time
25/10/2015 is the first day of Greenwich Mean Time
In a perfect world, my function would look something like this:
For example:
24/10/2015 is the last day of British Summer Time
25/10/2015 is the first day of Greenwich Mean Time
In a perfect world, my function would look something like this:
Code:
MyDate = "24/10/2015"
<check if MyDate falls within UK BST or GMT>
Result = "This date is BST"