=[PowerBallTicketsSold]*"0.07%"

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have this in my control source of my report for commissions what am i doing
wrong
 
This is a string rather than a number "0.07%". You can't multiply a string
times a number.
Try:
=[PowerBallTicketsSold]*0.0007
Make sure the name of the control is not the name of a field.
 
I have this in my control source of my report for commissions what am i doing
wrong
if commission is 7 percent then
=[PowerBallTicketsSold]*[CostPerTicket]*0.07
if commission is 7 one hundredths of one percent then
=[PowerBallTicketsSold]*[CostPerTicket]*0.0007

Chuck
--
 

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

Similar Threads

null values on a report 2
balance column 2
Microsoft to declare Win XP a failure on June 8 1
Round() 3
wonky subtotals 3
Group Top N Values in a Report 1
Rounding problem 10
USB over current status 2

Back
Top