|
Jim Langston wrote: > We have some dates in MMDDYY format stored as numbers. > > In a query I define some result fields as: > Temp1 ARINDT / 100 > Temp2 Temp1 * 100 > InvYear ARINDT - Temp2 > InvMonth ARINDT / 10000 > > Then, in my select records I have > InvYear EQ 98 > AND InvMonth GE 10 > OR InvYear EQ 99 > AND InvMonth LE 03 > > The whole idea being to get the range of records from 10/01/98 to > 03/31/99 > We prefer to work with dates using the DATE data type within a query as follows: Temp1 subst(digits(ARINDT) 5 2) '/' subst(digits(ARINDT) 1 2) '/' subst(digits(ARINDT) 3 2) ARIDATE date(temp1) Then select by range: ARIDATE RANGE '10/01/98' '03/01/99' Note: Your date data type is in the format of what your job is. Hope this helps, Billy +--- | This is the Midrange System Mailing List! | To submit a new message, send your mail to MIDRANGE-L@midrange.com. | To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com. | To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com. | Questions should be directed to the list owner/operator: david@midrange.com +---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.