wrap the field in the nz
function.
NZ
will assign the second argument if the first is null.
nz("SuperUser","default") = "SuperUser" nz(NULL,"default") = "default"
this would change the test you have to something like this (repeat for whatever tests you need to do):
Like IIf(nz([forms]![Search Fittings]![SizeB_Text],"")="0" ,"*" ,nz([forms]![Search Fittings]![SizeB_Text],"") )