Here is what you could use:
SELECT IIf(IsNull([MAX DISB]), NULL, Date()-[MAX DISB]) AS DAYS, .....
Basically the syntax is IIf(condition, to_do_if_true, to_do_if_false) AS field_name
I don't know about your particuliar situation but I don't see why you would be interested in having a...