Forum Discussion
Line Graph Should Ignore Blank Cells
- Nov 07, 2024
This failure to recognise that cells containing an empty string are to be considered as blank is a long-standing 'feature' of Excel. Riny_van_Eekelen 's solution of forcing #N/A errors is a standard for traditional spreadsheets but with dynamic arrays other solutions are possible. In particular
= FILTER(SCAN(, admissions, SUM), admissions) Insider only = SCAN(, TRIMRANGE(admissions), SUM)
will both create truncated output datasets that work well with charts and create an improved tabular presentation.
This failure to recognise that cells containing an empty string are to be considered as blank is a long-standing 'feature' of Excel. Riny_van_Eekelen 's solution of forcing #N/A errors is a standard for traditional spreadsheets but with dynamic arrays other solutions are possible. In particular
= FILTER(SCAN(, admissions, SUM), admissions)
Insider only
= SCAN(, TRIMRANGE(admissions), SUM)
will both create truncated output datasets that work well with charts and create an improved tabular presentation.