Forum Discussion
Flopbot2
Nov 06, 2024Copper Contributor
Line Graph Should Ignore Blank Cells
Greetings, I have an Excel line graph that doesn't seem to be working properly and I'm not sure why. It's acting more like a bug with the Excel file itself - or perhaps the Excel program - than a p...
- 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.
Flopbot2
Nov 07, 2024Copper Contributor
Thank you so much PeterBartholomew1 and Riny_van_Eekelen I learn something new each time! I can appreciate long-standing 'features' and have a great workaround going forward. Thank you both, again!