A family of Microsoft relational database management systems designed for ease of use.
It is text field.... Can i use any other func except null
There is no built-in function to determine whether a field is either Null or composed of characters that are non-displayable. However, you could write such a function, called maybe IsBlank(), or construct an expression using the Like operator.
It's not normally a good thing to have non-displayable, non-space characters in a text field, because they can be confusing. So it's probably better to find them and get rid of them, if you can, rather than modify your regular queries to work around them.
It occurs to me that your fields may well contain zero-length strings (""), rather than non-displayable characters. That's much more likely, now that I think of it. If that's all that's causing the problem, you can write your query expression like this:
IIf(Len([UnifiedTo] & "") > 0, [UnifiedTo], [PL])
If that is the problem, the query I suggested earlier should have shown it.