Use embedded SQL! ... but you first need to convert your numeric date into a real date and then use the WEEK_ISO (week according the ISO guide lines, i.e. week starts with Monday and the majority of the days in week 1 is from the new year) or WEEK (January first is always in the first week of a year).
Determining the week according the ISO guidelines with SQL from a 9 digit numeric date
Week_ISO(Right(Digits(YourNumDate) concat '000000', 14))
When Using the VarChar_Format Function you can even determine the year:
The following expression will return the Year/Week. If December 29 is in the first week of the next year, you'll get NextYear/01.
VarChar_Format(Timestamp(Right(Digits(YourNumDate) concat '000000', 14)), 'IYYY/IW')
In this way it is possible to group and sort your dates.
Mit freundlichen Grüßen / Best regards
Birgitta Hauser
"Shoot for the moon, even if you miss, you'll land among the stars." (Les Brown)
"If you think education is expensive, try ignorance." (Derek Bok)
"What is worse than training your staff and losing them? Not training them and keeping them!"
„Train people well enough so they can leave, treat them well enough so they don't want to.“ (Richard Branson)
-----Original Message-----
From: RPG400-L <rpg400-l-bounces@xxxxxxxxxxxxxxxxxx> On Behalf Of Booth Martin
Sent: Donnerstag, 10. Oktober 2019 03:26
To: RPG programming on the IBM i (AS/400 and iSeries) <rpg400-l@xxxxxxxxxxxxxxxxxx>
Subject: RPGLESQL group by year, week# descending from a 9/0 field
This seems possible, but so far I haven't unlocked the lock.
Lets say I have a file with dates as 9/0 (i.e., 020191009 for today)
I would like to group those records by week #, descending. The years will wrap, so there has to be a year marker too.
--
This is the RPG programming on IBM i (RPG400-L) mailing list To post a message email: RPG400-L@xxxxxxxxxxxxxxxxxx To subscribe, unsubscribe, or change list options,
visit:
https://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxxxxxxxx
Before posting, please take a moment to review the archives at
https://archive.midrange.com/rpg400-l.
Please contact support@xxxxxxxxxxxx for any subscription related questions.
Help support midrange.com by shopping at amazon.com with our affiliate link:
https://amazon.midrange.com
As an Amazon Associate we earn from qualifying purchases.