I have a bunch of textboxes that i need to tally up. My problem is that sometimes, the text boxes will be empty.
so far, i have the following code in my "total score" textbox
=CInt([txt1].[Value])+CInt([txt2].[Value])+CInt([txt3].[Value])
what's the best way to also check for a null? if it's null, i don't want to attempt to add it. Right now i get "Error in my total score for any record that has a null
thx
so far, i have the following code in my "total score" textbox
=CInt([txt1].[Value])+CInt([txt2].[Value])+CInt([txt3].[Value])
what's the best way to also check for a null? if it's null, i don't want to attempt to add it. Right now i get "Error in my total score for any record that has a null
thx