Calculations

  • Thread starter Thread starter Amy
  • Start date Start date
A

Amy

I am trying to calculate commissions. Some of the projects
only get half of the commission and some get the whole
commission. How can I put this in one report that includes
all of the projects commissions correctly?

Thanks
 
I am trying to calculate commissions. Some of the projects
only get half of the commission and some get the whole
commission. How can I put this in one report that includes
all of the projects commissions correctly?

Thanks

You could add an unbound control to the report:
=IIf([HowMuchCommission] = "GetsHalf",Format([Commission] *
..5,"#,###.00"),[Commission])
 
Thanks!! That did the trick! :)
-----Original Message-----
I am trying to calculate commissions. Some of the projects
only get half of the commission and some get the whole
commission. How can I put this in one report that includes
all of the projects commissions correctly?

Thanks

You could add an unbound control to the report:
=IIf([HowMuchCommission] = "GetsHalf",Format([Commission] *
..5,"#,###.00"),[Commission])
--
Fred
Please only reply to this newsgroup.
I do not reply to personal email.
.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top