Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Function nz(myContent As Variant)
If IsNull(myContent) Then nz = 0 Else nz = myContent
End Function
Access has a nice function called NZ. It returns a 0 if the content is null. Unfortunately, this function is not available in Excel. But you can use this user-defined function instead...
Code:Function nz(myContent As Variant) If IsNull(myContent) Then nz = 0 Else nz = myContent End Function