Hello everyone,
My query returns a numeric designator for the area that was determined and blank (null???) for those, that have not been identified.
I cannot figure out why this does not work
but this works
Is not this the whole purpose of the NZ function to replace blanks with something?
Thanks in advance for your thoughts.
My query returns a numeric designator for the area that was determined and blank (null???) for those, that have not been identified.
I cannot figure out why this does not work
Code:
Region1: nz([Region],"Not Defined")
but this works
Code:
Region2: IIf([Region]="","Not Defined",[Region])
Is not this the whole purpose of the NZ function to replace blanks with something?
Thanks in advance for your thoughts.