how can i group a variable?
Hi,
i have a field have value a date, and a variable calculation is
var
year, month, day: Integer;
begin
DecodeDate(Table['Date'], year, month, day);
Value := month;
end;
my database sort by Date
i want to make a group by month as custom field,
but my group dont success.
Thanks,
Murat Ak
CPMSoft A.S.
i have a field have value a date, and a variable calculation is
var
year, month, day: Integer;
begin
DecodeDate(Table['Date'], year, month, day);
Value := month;
end;
my database sort by Date
i want to make a group by month as custom field,
but my group dont success.
Thanks,
Murat Ak
CPMSoft A.S.
This discussion has been closed.
Comments
via the report group menu I was able to create a user defined group on a
ppVariable. Therefore which version of RB are you using? Which kind of
behaviour do you want to achive?
I think from your text that your are able to create the group but the
result is not ordered by month. Is this correct? Or is something else
wrong with the result?
enjoy,
Ron.
i succeed.
good luck,