I'm having problems with IsNull. I have a table with numeric values. The query looks at the depth value, and determines how deep it is (i.e. surface, shallow, medium & deep).
There are some cells that don't have any info in them, but when I run the query, it still returns a value, such as surface, or medium, etc.
this is what my formula looks:
Depth: IIf([ALLQUAKE]![Depth]<15,"Surface",IIf([ALLQUAKE]![Depth]<40,"Shallow",IIf([ALLQUAKE]![Depth]<100,"Medium","Deep"
))
I was told to use IsNull, but I don't know how I would use it, or even the syntax of it.
Does this make sense to anyone? Can anyone help me?
There are some cells that don't have any info in them, but when I run the query, it still returns a value, such as surface, or medium, etc.
this is what my formula looks:
Depth: IIf([ALLQUAKE]![Depth]<15,"Surface",IIf([ALLQUAKE]![Depth]<40,"Shallow",IIf([ALLQUAKE]![Depth]<100,"Medium","Deep"
I was told to use IsNull, but I don't know how I would use it, or even the syntax of it.
Does this make sense to anyone? Can anyone help me?