Link to home
Start Free TrialLog in
Avatar of running32
running32

asked on

Sum a null value in Access

I am trying to Sum an Expression in Access, but one of the values may be NULL.  How can I add a numer and still get a result even is one is Null.  Expr2: [countoflngPassesused]+[CountOflngmemberid]. thank you
ASKER CERTIFIED SOLUTION
Avatar of DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Nz([countoflngPassesused])+Nz([CountOflngmemberid])

mx
Sorry ... typo in first post ... see my 2nd post
Avatar of running32
running32

ASKER

Thank you