G
Guest
I need to write some SQL that will insert a value from another query and if
that field is empty, to enter a blank. Sounds simple right? I have been using
this SQL:
IIf(Val([qrySpeciated Results].[UAS3] Is Not Null),(Val([qrySpeciated
Results].[UAS3]))," ")
The problem is that later I need to do a calculation on this field, and the
" " is seen as a character. I cannot enter a zero instead of a " " because a
blank and a zero are viewed as two different things in this analysis.
Any suggestions on how to enter a blank that is seen as a value?
Any help would be much appreciated!
Thanks.
that field is empty, to enter a blank. Sounds simple right? I have been using
this SQL:
IIf(Val([qrySpeciated Results].[UAS3] Is Not Null),(Val([qrySpeciated
Results].[UAS3]))," ")
The problem is that later I need to do a calculation on this field, and the
" " is seen as a character. I cannot enter a zero instead of a " " because a
blank and a zero are viewed as two different things in this analysis.
Any suggestions on how to enter a blank that is seen as a value?
Any help would be much appreciated!
Thanks.