IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Calculate n number of months old date


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
amandeep

New User


Joined: 05 Mar 2010
Posts: 2
Location: India

PostPosted: Fri Mar 05, 2010 4:55 pm
Reply with quote

Hi All,

I need to calculate 24 number of months old date from current gregorian /julian date. Can anybody help?
Back to top
View user's profile Send private message
sbprem1

New User


Joined: 05 Mar 2010
Posts: 5
Location: Chennai

PostPosted: Fri Mar 05, 2010 6:09 pm
Reply with quote

Well, you can use DB2 built-in functions as follows:

SET :DATEHV = ADD_MONTHS('2000-2-28', 4);

SET :ADD_MONTH = ADD_MONTHS(:DATE,3);
Back to top
View user's profile Send private message
amandeep

New User


Joined: 05 Mar 2010
Posts: 2
Location: India

PostPosted: Fri Mar 05, 2010 6:12 pm
Reply with quote

Sorry I forgot to mention that I need this in cobol , I am not using DB2 icon_smile.gif
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Mar 05, 2010 7:06 pm
Reply with quote

What, exactly, are you having trouble with? If you don't know how to do date calculations, you probably should go back to whoever taught you COBOL and ask for a refund since IF and SUBTRACT are both basic COBOL statements. So is getting the current date.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Fri Mar 05, 2010 9:20 pm
Reply with quote

To be honest, I just don't understand the question? What is being asked, after all?
Quote:
calculate 24 number of months old date from current gregorian /julian date
what does "24 number of months" mean? There are only 12 month sI know of! icon_neutral.gif
Back to top
View user's profile Send private message
Craq Giegerich

Senior Member


Joined: 19 May 2007
Posts: 1512
Location: Virginia, USA

PostPosted: Fri Mar 05, 2010 9:22 pm
Reply with quote

What about partial months?
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Fri Mar 05, 2010 9:24 pm
Reply with quote

OK i' ll bite!
why not simply subtract 2 from the years part
yyyymmdd - 24 months = yyyymmdd - 2 years
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replacing 'YYMMDD' with date, varying... SYNCSORT 3
No new posts Modifying Date Format Using DFSORT DFSORT/ICETOOL 9
No new posts Pulling a fixed number of records fro... DB2 2
No new posts Substring number between 2 characters... DFSORT/ICETOOL 2
No new posts Generate random number from range of ... COBOL Programming 3
Search our Forums:

Back to Top