how to make a query doesn't show the records (null) ?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mostafa moniem
    New Member
    • Apr 2016
    • 18

    how to make a query doesn't show the records (null) ?

    i need a query that doesn't show records that has a certain fields (null)
  • jforbes
    Recognized Expert Top Contributor
    • Aug 2014
    • 1107

    #2
    You can use the Is Null criteria to perform the desired function. It's pretty straight forward. This is from Mirosoft: Examples of query criteria

    Is Null
    This criterion can be applied to any type of field to show records where the field value is null.

    Comment

    • mostafa moniem
      New Member
      • Apr 2016
      • 18

      #3
      i want it don't show the record if it is null

      Comment

      • jforbes
        Recognized Expert Top Contributor
        • Aug 2014
        • 1107

        #4
        It's pretty much the same thing with the Not keyword inserted into it. That is also detailed in the link: Examples of query criteria
        Is Not Null
        Returns records where the value is not missing in the field.

        Comment

        Working...