I am trying to use the built in sharepoint U.I to setup a filter for Scheduling Start Date & Scheduling End Date.
However I noticed that if you setup something with a "Scheduling Start Date" as "Immediately" it will put nothing in the "Scheduling Start Date" column.
This leads me to think that is is null or empty.
However I need to check for this but I can't figure it out.
If I do

It will fail. I also tried to compare against "null" but it says it can't use this to compare it. So how can I check for this "immediately" case?
If I was writing this in code it probably like
if(startDate == null || startDate <= [Today])
{
// do something
}
So how do I do this in the U.I or how do I right my own filter?
I am having the same problem with "Scheduling End Date" if it is set to "Never"
