What answer would you want? Do you want to treat NA as 0?
My previous answer to you (before this additional requirement) was
=CLng([AL-Complete])+CLng([AL-Daily Update])+CLng([AL-Appropriate Use])
If you want any non-numeric input to be treated as 0, try:
=IIf(IsNumeric([AL-Complete]),CLng([AL-Complete]),0) +
IIf(IsNumeric([AL-Daily Update]), CLng([AL-Daily Update]), 0) +
IIf(IsNumeric([AL-Appropriate Use]), CLng([AL-Appropriate Use]), 0)
--
Doug Steele, Microsoft Access MVP
(no e-mails, please!)
Angel said:
How would I write it if one of the values should change to NA or ""?
Angel said:
I have tried everything I can think of. Can someone please tell me what is
wrong with the following equation?
=Sum([AL-Complete Label]+[AL-Daily Update Label])
Thank you