Code:
ProductionLost: Nz(([UnplannedDowntime]+[sumofchangeoverminutes])*[AvgOfCalcLineSpeed],0)
What did I do wrong?
Thanks for the help.
ProductionLost: Nz(([UnplannedDowntime]+[sumofchangeoverminutes])*[AvgOfCalcLineSpeed],0)
NZ()
, it doesn't realise that the result is numeric. NZ()
returns a Variant value.ProductionLost: CDbl(Nz(([UnplannedDowntime]+[sumofchangeoverminutes])*[AvgOfCalcLineSpeed],0))
Comment