P
Pete Provencher
Using Access 2000:
I have two fields LandValue and ImprovementValue. I'm trying to create a new
field that adds the numbers in the two fields. Unfortunately, on of the
fields might be null and in that case is doens't add them. Is there a work
around here. I don't want to have to put a 0 in the null instances.
I thought someting like this might work but it doesn't:
((IIF([landvalue] is null,0,[landvalue])) + (IIF(impvalue] is
null,0,[impvalue])))
Any help will be appreciated.
Pete Provencher
I have two fields LandValue and ImprovementValue. I'm trying to create a new
field that adds the numbers in the two fields. Unfortunately, on of the
fields might be null and in that case is doens't add them. Is there a work
around here. I don't want to have to put a 0 in the null instances.
I thought someting like this might work but it doesn't:
((IIF([landvalue] is null,0,[landvalue])) + (IIF(impvalue] is
null,0,[impvalue])))
Any help will be appreciated.
Pete Provencher