Is there anybody who can help me out with a Crystal Reports question? I did a groupresult as average. The Option Average from the groupresults shows me per example 4.3, 5.4, 6.3.
The question is, if there are some options to round these results from the groupsum to
4.3 -> 4.5,
5.4 -> 5.5,
6.3 -> 6.5.
I tried the formula round(x,y) operator but it is not working well. The round function does not show me the correct results, because I try to round up the Groupingresult. And If I click on the field edit Groupresults (Running Total) I can just choose round to decimals. But if I do so, it will show me 4.3, 5.4 and 6.3 as examples. A not 0.5. For my case, the group result shall be calculating the average and rounding it up to half degrees.
here the code i got in group results: Round (average({Orders.SumOrders}), 1)
Thank you very much for your help :)