Creating a chart in Excel that ignores #N/A or blank cells

前端 未结 19 1810
挽巷
挽巷 2020-12-03 04:25

I am attempting to create a chart with a dynamic data series. Each series in the chart comes from an absolute range, but only a certain amount of that range may have data, a

19条回答
  •  情歌与酒
    2020-12-03 04:58

    I had a similar issue using an X/Y chart but then also needed to calculate the correlation function on the two sets of Data.

    =IF(A1>A2,A3,#N/A) allows the chart to be plotted but correlation of X & Y fails.

    I solved this by =IF(A1>A2,A3,FALSE)

    The FALSE can then be removed using conditional formatting or other tricks

提交回复
热议问题