Blank cell creating a Zero value and messing up chart

Met Fan

Board Regular
Joined
Jul 1, 2004
Messages
185
I have a range of data I use for a chart. Since it gets its data daily from other sheets the future sheet dates should have a blank value. The formula I had to grab the info for tomorrows data is:

=IF(ISERROR('9.26'!$L$10:$M$10)," ",'9.26'!$L$10:$M$10)

I need to us an IF(ISERROR formula because the cells L10:M10 in the worksheet 9.26 are merged and contain a formula. When I look at the chart the data point is a zero value and I want it to be blank.

Can anyone help?
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Try this:
=IF(ISERROR('9.26'!$L$10:$M$10),NA(),'9.26'!$L$10:$M$10)
The NA() should not show a value where the " " does.
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top