That's not quite what I meant. The function ISNULL can enter a default string into a field if the user doesn't enter anything so you don't get nulls. For example,
ISNULL(fieldname, 'Not Supplied')
will enter "Not Supplied" into the field if nothing else is enter, so a query won't just bring back nothing. I think this will solve my problem, but I'm just trying to remember if there's another SQL function that does the same thing...I think there is, but I can't remember it.