COUNTBLANKSuggest EditsReturns the number of blank values in a dataset. Parameters value Array (required) - an array of items Returns Number - the number of blank items in the array Examples JavaScript// since null and '' are blank values COUNTBLANK([null, null, '', 1]) // returns 3 Updated almost 3 years ago Table of Contents Parameters Returns Examples