Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I want to select anything where a value is null, for an incident enter 1

Status
Not open for further replies.

jschill2628

Programmer
Nov 3, 2009
156
US
I want to select anything where a value is null, for an incident entered in the system before today at noon. I am then going to burst the report out everyday.
 
In select expert just enter

isnull(yourfield)

if multiple fields

(isnull(yourfield1) or isnull(yourfield2) or isnull(yourfield3)
or......)

Ian
 
Isnull({table.field}) and
{table.datetime} = currentdate and
{table.datetime} < datetime(currentdate,time(12,0,0))

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top