×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
Adam West wrote:
OK there are a couple of code help I need here.
1. I want to add say 45 days to the current date.
today = %date();
futureDate = today + %days(45);
2. I then want to know, what is the next Friday for #1.
The other posts have suggested a couple of ways to do this. I like the
solution that Booth suggests:
define a constant KNOWN_FRIDAY value d'1900-01-05'
/free
// calculate future date as above
daysUntilFriday = 7 - %rem(
%diff(futureDate - KNOWN_FRIDAY : *days) :
7
);
nextFriday = futureDate + %days(daysUntilFriday);
/end-free
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.