Hello everybody,
I've got a start_date and end_date
now i would like to make a report with a group for every day between these dates.
I tried this example, but when i try to make that as group field the OK button is greyd out and the result of that field shows up as true. What's wrong ??
numberVar maxd := {tbl_schulung.ende} - {tbl_schulung.beginn} +1;
numberVar i;
i:=0;
while i < maxd do
(
{tbl_schulung.beginn} = {tbl_schulung.beginn} +i;
i := i + 1;
);
I'am using Postgres 7.0 and CR 8.0
Bastel
I've got a start_date and end_date
now i would like to make a report with a group for every day between these dates.
I tried this example, but when i try to make that as group field the OK button is greyd out and the result of that field shows up as true. What's wrong ??
numberVar maxd := {tbl_schulung.ende} - {tbl_schulung.beginn} +1;
numberVar i;
i:=0;
while i < maxd do
(
{tbl_schulung.beginn} = {tbl_schulung.beginn} +i;
i := i + 1;
);
I'am using Postgres 7.0 and CR 8.0
Bastel