G
Guest
Hi everyone,
I am doing some calculations in a field that have some zeros and I get
#error since I can not divide by zero (I know this too). Is there a way that
I can convert #Error to a zero?
Eric
SELECT BOL.Plant, BOL.Year, BOL.Errors, BOL.Loaded, IIf([Errors]/[Loaded] Is
Null,0,[Errors]/[Loaded]) AS ErrorsPer100Loaded
FROM BOL;
I am doing some calculations in a field that have some zeros and I get
#error since I can not divide by zero (I know this too). Is there a way that
I can convert #Error to a zero?
Eric
SELECT BOL.Plant, BOL.Year, BOL.Errors, BOL.Loaded, IIf([Errors]/[Loaded] Is
Null,0,[Errors]/[Loaded]) AS ErrorsPer100Loaded
FROM BOL;