K
Kevin Sprinkel
The query below is generating this error message if a Null
value exists in Formula. Can anyone figure out where I've
gone astray? My design intent is to sum the two
expressions for each unique combination of JobNumber and
Reference.
The fields are:
Formula Text
Multiplier Integer
LBperLF Single
SFperLF Single
SELECT tblTakeoff.JobNumber, tblTakeoff.Reference,
Sum(Nz(Eval([Formula]),0)*[Multiplier]*[LBperLF]) AS LB,
Sum(Nz(Eval([Formula]),0)*[Multiplier]*[SFperLF]) AS SF
FROM tblTakeoff
GROUP BY tblTakeoff.JobNumber, tblTakeoff.Reference;
TIA
Kevin Sprinkel
value exists in Formula. Can anyone figure out where I've
gone astray? My design intent is to sum the two
expressions for each unique combination of JobNumber and
Reference.
The fields are:
Formula Text
Multiplier Integer
LBperLF Single
SFperLF Single
SELECT tblTakeoff.JobNumber, tblTakeoff.Reference,
Sum(Nz(Eval([Formula]),0)*[Multiplier]*[LBperLF]) AS LB,
Sum(Nz(Eval([Formula]),0)*[Multiplier]*[SFperLF]) AS SF
FROM tblTakeoff
GROUP BY tblTakeoff.JobNumber, tblTakeoff.Reference;
TIA
Kevin Sprinkel