I have a formula field that converts the number of minutes to hours:
{DUR}/60
This is grouped (by day, but I think this is irrelevant)
I then have to take 30 minutes out of this sum if the total of the group is over 6 hours:
if Sum ({@DurDecHours}, {@LoginDate}) > 6 then
(Sum ({@DurDecHours}, {@LoginDate}) - 0.5)
else Sum ({@DurDecHours}, {@LoginDate})
I would then like to produce a grand total for the report of the above. I get a note saying that I cannot produce a summary field on this info.
Any help is much appreciated.
{DUR}/60
This is grouped (by day, but I think this is irrelevant)
I then have to take 30 minutes out of this sum if the total of the group is over 6 hours:
if Sum ({@DurDecHours}, {@LoginDate}) > 6 then
(Sum ({@DurDecHours}, {@LoginDate}) - 0.5)
else Sum ({@DurDecHours}, {@LoginDate})
I would then like to produce a grand total for the report of the above. I get a note saying that I cannot produce a summary field on this info.
Any help is much appreciated.