Trying to get a count based on cells in two different columns - I want to count all cells in column A that have a value, but I only want these values to be counted if there is no value in a cell in column B Ex. of what this would look like in Excel: A2 = 2020-08-19, B2 = *B2 is blank
Current formula is below, just returns a FALSE. I've also tried a few variations of COUNTIFS, but can't seem to get it right.
=IF(ISBLANK(B2:B6),COUNTIF(A2:A6,"*"))