TurdFurguson
Programmer
Im using crystal 9 and trying to sum a groupName field.
I have a report with 6 grouping. The 6th group is Tax.
I want to sum the value in the group name of tax and not the actual tax?
my data looks like
inv num date tax amt units
1123 4/25 .30 12
1123 4/25 .30 8
1123 4/25 .30 6
inv num, date, and tax amt are my groupings so the report would look as follows
inv num date tax amt units
1123 4/25 .30
12
8
6
if i sum tax i get .90 and thats the wrong answer i want to sum the groupName so i tried a formula like this
sum(tonumber(GroupName ({Command.TAX})))
I get an error saying sum requires a field? Anyone have any ideas how I can sum the group name?
Thanks
I have a report with 6 grouping. The 6th group is Tax.
I want to sum the value in the group name of tax and not the actual tax?
my data looks like
inv num date tax amt units
1123 4/25 .30 12
1123 4/25 .30 8
1123 4/25 .30 6
inv num, date, and tax amt are my groupings so the report would look as follows
inv num date tax amt units
1123 4/25 .30
12
8
6
if i sum tax i get .90 and thats the wrong answer i want to sum the groupName so i tried a formula like this
sum(tonumber(GroupName ({Command.TAX})))
I get an error saying sum requires a field? Anyone have any ideas how I can sum the group name?
Thanks