COUNTBLANK Suggest 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 about 1 year ago Table of Contents Parameters Returns Examples