I am experimenting trying to get a simple 'For' loop (crystal syntax) to just display a series of numbers/dates across the top of the report. I have tried the following:
NumberVar i;
For i := 1 to 31 Do
(
If i = Day({Ideas.submitted}) then
Day({Ideas.submitted})
Else
i
);
I continues to return "True" (once) with nothing else displayed. Can you steer me in the right direction here? TIA. -rodbac
NumberVar i;
For i := 1 to 31 Do
(
If i = Day({Ideas.submitted}) then
Day({Ideas.submitted})
Else
i
);
I continues to return "True" (once) with nothing else displayed. Can you steer me in the right direction here? TIA. -rodbac