cancel
Showing results for 
Search instead for 
Did you mean: 

How to select on ISNULL

Former Member
0 Kudos

I Have this datetime col. I want to show rows that has a date of NULL in that col.

WHen I use 

where Mydate ISNULL and

etc.

I get an error, remaining is not part of the formula.

How can I select on a column which is NULL value?

Accepted Solutions (1)

Accepted Solutions (1)

DellSC
Active Contributor
0 Kudos

If you're doing this in a command, you need to put a space between IS and Null - so it would be:

where Mydate is null

If you're doing this in the Select Expert, it needs to be this:

IsNull({MyTable.MyDate})

-Dell

Answers (0)