I have a formula field (@TotalFaxBack) in a report that calculates commission as:
if {@FaxBack} = "Yes" and {#OrderTotal} < 2000 then 25
else if {@FaxBack} = "Yes" and {#OrderTotal} > 2000 then 50
else 0
This is displayed for each order in the report. I need to create a sum of this for each salesman and the report will not let me create a running sum on the field. If anyone has any ideas, they would be greatly appreciated.
if {@FaxBack} = "Yes" and {#OrderTotal} < 2000 then 25
else if {@FaxBack} = "Yes" and {#OrderTotal} > 2000 then 50
else 0
This is displayed for each order in the report. I need to create a sum of this for each salesman and the report will not let me create a running sum on the field. If anyone has any ideas, they would be greatly appreciated.