You need to sign in to do that
Don't have an account?
sihmeieos
Calculate based on Calendar
Hello.
I want to calculate date based on calendar.
I think that use Date.
Date initdate = '2010-02-19 00:00:00';
Date updatedate;
updatedate = initdate.addYears(1); //want to know next year's day
But I dought [Date.addYears()] is adiing numeric '1' to only year'2010'.
That reault is updatedate'2011-02-10 00:00:00'.
Do I must to create a logic? example:date calc
Or can I user any method?
please tell me.
Thanks.
If I want to calculate date based on calendar in apex code,
I think to use Date.addDaye(1).
But I want to add months or years, Date.addMonths(1), Date.AddYears(1),
that is'nt add date, I think that add numeric.
Case 1: add day(1 days later)
TODAY().addDays(1)
Case 2: add months(1 month later)
TODAY().addMonths(1)??
Case 3: add years(1 year later)
TODAY().addYears(1)??
When case2 and 3 , that code is correctly?
Please tell me for correct method.
Thanks.