I'm trying to
select * from table where Contact Is Not null
but it displays values โโincluding empty values
Your query is correct, but you probably have zero rows in the Contact column. you can use
select * from table where len(Nz(Contact, '')) > 0
The function Nzreturns the specified default value if the column is null.
Nz
You can try the following:
select * from table where Len([Contact] & "")>0