×
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.
Sounds like you are trying to calculate your column headings.
Let's say your first shipment date was 2014-08-20. And you want the
headings for 53 columns beginning with the Monday of that date.
To calculate the first Monday would be like this actual working sql
statement:
values date('2014-08-20') - (dayofweek_iso('2014-08-20') - 1) days
For imbedded sql you can do a VALUES INTO ColHeading(1)
Once you know that date it's quite simple to calculate the rest of the 53
columns:
for x = 2 to 53;
ColHeading(x)=ColHeading(1) + ((x-1) * 7) days;
EndFor;
Rob Berendt
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 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.