The leap-year tag has no wiki summary.
1
vote
3answers
69 views
Subtracting a year with DATEADD doesn't handle leap years correctly
While subtracting a year form current date, if current day is February 28 2013 then below statement returns February 28 2012, but correct result should be February 29 2012 as 2012 is a leap year. How ...
0
votes
0answers
49 views
MDX TTM Calculated member - day level
I need to create a calculated member that calculates revenue for TTM (Trailing Twelve Months) associated to selected date (day level).
I tried something like this:
SUM(
{
[Accounting ...
0
votes
2answers
62 views
Q&A: How do I figure out what the last day of the month is?
I was trying to write a roll-your-own timezone converter and I needed a way of determining what the last possible day of the month was. Upon some research, I discovered the formulas for finding a leap ...
0
votes
3answers
90 views
Efficiently calculate leap days
Im using the following function to calculate the number of leap days between two years:
static int CountLeapDays(int startYear, int endYear)
{
int Days = 0;
while (true)
{
if ...
0
votes
1answer
24 views
Zend Date doesn't check leap year
I have this code
$dateObject = new Zend_Date('2013-02-28', 'yyyy.mm.dd');
$dateObject->addDay(2);
$newDate = $dateObject->toString('yyyy-mm-dd);
This gives me $newDate = '2013-02-30'; which ...
1
vote
1answer
95 views
Verification of Leap Year for DOB field in WebDriver using Java
I have a text field for inputting Date of Birth(DOB) as "dd/mm/yyyy" format. I like to automate the test with WebDriver for Leap Year checking for that field. I'm using Java and TestNG with WebDriver ...
2
votes
2answers
105 views
Select statement across multiple years grouping in periods spanning leap year
I have this query which selects all records spanning iMAXYears until 30 Nov 2012:
SELECT sum([AllocatedAmount]) as total,
datediff(day,transactiondate,'30 Nov 2012') / DaysInyear AS YearDiff
...
0
votes
2answers
50 views
Copy shifts from leap year to non-leap year
I need to copy all the shifts from 2012 to 2013 using T-SQL 2008 R2. There are 3 shifts per day. Start date and shift date are always same. end date (for shift c) is the next day.
As you can see, ...
1
vote
2answers
126 views
Leap year in FreePascal
Input - Year
Output - Leap year or not
I have tried
Program LeapYear;
var
Year:Integer
begin
writeln('Insert year');
readln(Year)
if Year MOD 4 = 0 and Year MOD 100 = 0 and ...
1
vote
1answer
91 views
Determine Leap Year
here is my requirements and I need to know if i did right?
Determine If a Year Is a Leap Year Algorithm
If the year can be evenly divided by 4, then it is a leap year
o Except when the year can ...
0
votes
2answers
255 views
How do I display all the leap years between two year in javascript
How do I create an HTML page which accepts user input into the text field as integer between 1900 and 2012. When the user presses the “Display” button, the function created in JavaScript should able ...
0
votes
3answers
641 views
JavaScript calculate years and days from start date
I have date when someone is born, and I need to calculate with JavaScript or jQuery or so, how many years, days since birth date, until now.
So result can be like 20 years, 89 days.
I need to have ...
-1
votes
4answers
997 views
iOS How to get day number of the year? [duplicate]
Possible Duplicate:
How do you calculate the day of the year for a specific date in Objective C
I need to get the day number of the year and don't know which would be the best aproach.
...
1
vote
3answers
91 views
Following is my leap year program.It is showing LEAP YEAR for every output
My program is showing "it is a leap year" for every output. Please let me know where i am committing an error??
#include<stdio.h>
#include<conio.h>
void main()
{
int a;
clrscr();
...
12
votes
2answers
374 views
Leap year check using bitwise operators (amazing speed)
Someone on JSPerf dropped an amazingly fast implementation for checking leap years of the ISO calendar (link: Odd bit manipulations):
function isLeapYear(year) {
return !(year & 3 || year & ...
2
votes
3answers
454 views
Mysql Dayofyear in leap year
In the following query the leap year is not taken into account.
SELECT e.id,
e.title,
e.birthdate
FROM employers e
WHERE DAYOFYEAR(curdate()) <= ...
0
votes
1answer
538 views
MDX: How to go back 1 year-to-date while taking leap year into consideration?
Trying to come up with a query that will give me the set of dates going back 365 days from today (and in leap years past feb, 366 days).
Here's what I got so far:
Select [Measures].[Revenue] on 0,
...
0
votes
2answers
1k views
Javascript older than 18 on leap years
I'm using this javascript to check if the age entered is older than 18.
function calculateDiffYear(date, month, year)
{
var cur = new Date();
var diff = ...
3
votes
1answer
273 views
Finding out if its a leap year and setting accordingly
I have a form that has an initial end_date. I am having a Value error because this year is a leap year and we are currently in February.
My code has a end day of 30 but I am having trouble figuring ...
5
votes
2answers
5k views
javascript to find leap year
How can I get the code below to work when I have a month of february? Currently it is getting to the day and then stopping before getting to the if to determine whether it is a leap year.
if (month ...
3
votes
3answers
458 views
EntityFunctions.CreateDateTime issue with leap Year in linq to entity
When i have a leap year in my database (ex.: 29th Feb 2012). The EntityFunctions.CreateDateTime functions throws System.Data.SqlClient.SqlException: Conversion failed when converting date and/or time ...
7
votes
3answers
275 views
Get a vector of all days in a year with R
Is there a simple R idiom for getting a vector of the days in a given year? I can do the following which does ok... except for leap years:
dtt <- as.Date( paste( as.character(year), "-1-1", ...
1
vote
2answers
1k views
Handling leap years in Python
I have a program where the user enters a date and then compares it to another date to see which one comes first.
How would I go about writing a code where the user inputs Feb 29 and the program ...
5
votes
3answers
5k views
PHP: Adding years to a timestamp
In PHP given a UTC timestamp I would like to add exactly N number of years. This should take into consideration leap years.
Thank you.
2
votes
2answers
3k views
Calculating a time duration with Joda-Time
I'm trying to use Joda-Time in order to know time durations between two points in time, where each point is given in its own local timezone.
E.g. :
DateTime ny = new DateTime(2011, 2, 2, 7, 0, 0, 0, ...
1
vote
3answers
5k views
Javascript: calculate number of days in month for a given year
I have a HTML page with 3 dropdowns for the month, day and year and I was wondering if there was a way to populate the month drop down properly depending on the month and year.
I haven't done this ...
4
votes
7answers
6k views
Java calculate days in year
Is there any handy method built in Java to calculate how many days were/will be in a specific year (as in was it a long (366 days) or short (365 days) year)?
Or do I need to write it myself?
I'm ...
0
votes
4answers
374 views
Where is my mistake - Date calculator for selectbox in Javascript/jQuery?
$(.dateselboxes) .change( function(){
var y; y=$("#year").val();
var m; m=$("#month").val();
var d;
// check leap year
var leapYear;
if(y%4==0)
{
if(y%100==0)
{
if(y%400==0) ...
0
votes
2answers
486 views
PHP strtotime without leap-years
With regards to this thread, I've developed a partial solution:
function strtosecs($time,$now=null){
static $LEAPDIFF=86400;
$time=strtotime($time,$now);
return ...
2
votes
1answer
111 views
Why is using JavaScript to plan Q1 year 22034 unreliable in Safari?
There is something fishy about the calculation of far future dates when done on the browser side (Safari 5.0.1), passing strings into the Date() constructor:
I narrowed it down to the February-March ...
2
votes
4answers
1k views
Regular expression for asp:RegularExpressionValidator with format MMddyy (leap year issue)
We need help for regular expression that work with asp.net asp:RegularExpressionValidator to validate date in MMddyy format. Problem we are facing is leap year. Issue is that is it possible to verify ...
0
votes
8answers
4k views
How to find leap year programatically in C
I made a program using C to find whether the entered year is a leap year or not. But unfortunately its not working well. It says a year is leap and the preceding year is not leap.
...
-1
votes
6answers
259 views
Correct expression for checking leap years [duplicate]
Possible Duplicate:
how to find leap year?
What will be the exact definition of leap year? AFAIK "A year which is divisible by 4 is a leap year. But for century years' the years which are ...
0
votes
6answers
1k views
How can I write a leap-year program in one line using PHP?
How can I write a leap-year program in one line using PHP?
4
votes
4answers
2k views
mysql birthday reminder, leap year
I'm trying to sort out a result set that gives the 5 closest users sorted by upcoming birthday. This works perfectly until leap years comes into play. For example:
May 15th - 96 days left
May 15th - ...
4
votes
4answers
3k views
How do I add 2 years to a date in powerbuilder and account for the leap year correctly?
How do I add 2 years to a date in powerbuilder and account for the leap year correctly?
We have a medical license application where the user would like the date to go expire two years. Current ...
5
votes
4answers
1k views
Easy way to determine leap year in ruby?
Is there an easy way to determine if a year is a leap year?
1
vote
3answers
5k views
Calculating number of days between two dates that are in a leap year
Given two dates, what is the best method to calculate the number of days between those two dates that fall in a leap year.
For example if d1 = 12/1/2007 and d2 = 1/31/2008 then the total number of ...
8
votes
9answers
36k views
Java Code for calculating Leap Year
I am following "The Art and Science of Java" book and it shows how to calculate a leap year.
The book uses ACM Java Task Force's library.
Here is the code the books uses:
import acm.program.*;
...
6
votes
5answers
5k views
How to determine the date one day prior to a given date in Java?
I am assuming Java has some built-in way to do this.
Given a date, how can I determine the date one day prior to that date?
For example, suppose I am given 3/1/2009. The previous date is 2/28/2009. ...
7
votes
12answers
12k views
leap year calculation
In order to find leap years, why must the year be indivisible by 100 and divisible by 400?
I understand why it must be divisible by 4. Please explain the algorithm.
1
vote
4answers
677 views
Accounting for leap year in comparing year to year sales
I am writing a program that shows the current years sales from the beginning of the fiscal year to the current date, compared to the same date range of the year before.
My question is, what efforts ...
2
votes
3answers
744 views
Leap year bug calling ToUniversalTime().AddYears().ToLocalTime()?
I encountered what may be a leap year in .NET's DateTime handling, specifically ToLocalTime(). Here's some code which reproduces the problem (I'm in the Pacific time zone):
DateTime dtStartLocal = ...


