Report question

  • Thread starter Thread starter Susan
  • Start date Start date
S

Susan

Is there a way to generate a detail item on a report from multiplying a
detail field by a constant. Like for instance if you have a price for an
item in the database and you would like to print the tax amount by the price
in the report?

Thanks for info!

Susan
 
use an unbound control in the report. if you want to find
out how much tax to display for the field [amount] put the
following in the control source of a new unbound control.
=[amount] * .07

Jim
 
Back
Top