On thinking about this more, the ", 0" at the end probably isn't what's
required, since you'd be able to use a simple
[WghtCalc]*Nz([Efficiency],0)
if it were!
LD: you'll have to decide what value you want if Efficiency is 0, and plug
it in there.
--
Doug Steele, Microsoft Access MVP
(no e-mails, please!)
Douglas J. Steele said:
I'd think that should be
IIf(Nz([efficiency], 0) <> 0,[WghtCalc]*[Efficiency], 0)
--
Doug Steele, Microsoft Access MVP
(no e-mails, please!)
bhicks11 via AccessMonster.com said:
iif(not isnull[efficiency],([WghtCalc]*[Efficiency]))
Bonnie
http://www.dataplus-svc.com
LDMueller wrote:
In Access 2003 I need to make the formula for the Expression Builder to
be
the equivalent of the following:
If [Efficiency] <> 0 then ([WghtCalc]*[Efficiency])
Can anyone help me with this.
Thanks!
LDMueller