SOLVED

Empty cells are displayed in a chart when using FILTER() function, when I don't want them to be

Copper Contributor

I have a workbook with a series of tabs (worksheets) that use the FILTER() function to draw data from a "master" tab. I'm trying to plot 2 series of data on a chart and one of the series has a lot of blank cells. However, these are shown as 0 on the chart even though the Hidden and Empty Cells setting means they shouldn't be (https://support.microsoft.com/en-us/office/display-empty-cells-null-n-a-values-and-hidden-worksheet-...). 

 

I suspect it is because the FILTER() function brings through the data as something different to a blank cell and confuses Excel...but unsure. Anyone encountered this issue?

3 Replies
best response confirmed by damienid (Copper Contributor)
Solution

@damienid As you have discovered, FILTER returns 0 (zero) when it encounters an empty cell. Zero is neither empty nor null. For your chart to work, you need to replace the empty cells in your table by #N/A's. Mocked up a small example to illustrate what I mean. See attached.

@Riny_van_Eekelen Great, thank you. I had tried to use #N/A before but had done it wrong so thanks for the example using the NA() function which looks like it has done the trick!

@Riny_van_Eekelen 

I would argue the FILTER does return a blank, though that is not how it appears on the worksheet.  The formula

= LET(
      filtered, FILTER(Table1[[Ref1]:[Ref2]], Table1[Item]<>""),
      IF(filtered="", NA(), filtered)
  )

discriminates between blanks and zeros in the source data.

1 best response

Accepted Solutions
best response confirmed by damienid (Copper Contributor)
Solution

@damienid As you have discovered, FILTER returns 0 (zero) when it encounters an empty cell. Zero is neither empty nor null. For your chart to work, you need to replace the empty cells in your table by #N/A's. Mocked up a small example to illustrate what I mean. See attached.

View solution in original post