Skip to main content

Hi all,

 

     I need to count the number of nulls from a particular column, what kind of formula should be used in that case?

May be I am looking for an equivalence of COUNTIF from Excel,

 

Thank you! How to count nulls

7 answers
  1. Jun 12, 2018, 4:50 PM

    hi Tenzin,

     

    Something like

     

    SUM(IIF(ISNULL([YourField]),1,0))

     

    should do the trick.

     

    Let me know if it doesn't, or that doesn't make sense

0/9000