Im trying to prevent an error message when running a query. I am still receiving the error with this function what I'm I doing wrong?
Weight: Round(([CWeight]-Nz([NWeight],0))/[CWeight]*100,2)
* NWeight is the only possible Null value which is why I only used Nz on it, I tried this also
Weight: Round((Nz([CWeight],0)-Nz([NWeight],0))/Nz([CWeight],0)*100,2)
Weight: Round(([CWeight]-Nz([NWeight],0))/[CWeight]*100,2)
* NWeight is the only possible Null value which is why I only used Nz on it, I tried this also
Weight: Round((Nz([CWeight],0)-Nz([NWeight],0))/Nz([CWeight],0)*100,2)