If you want to remove ROWS (not fields) if a certain FIELD (column) is null, use Report->Edit Selection Formula->Record
and place something like:
not isnull({table.field})
If that field is NULL (not zero or blank), then the entire row will be eliminated.
-k