×

Good News Everybody!

The new search engine is LIVE!

Please report any problems to david (at) 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 thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2026 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.