Create 'blank' on Graph instead of 0 value?

Cerestes

Board Regular
Joined
Jan 31, 2004
Messages
185
Short Question:

What can I have the IF statement return as a result that will NOT graph at all. Just leave a hole in the graph.

Long Question:
I have a large range of values and dates.
1/1 1/2 1/3 ....etc
10 11 7 .......etc
8 12 6 .....etc

These values are pulled via VLOOKUP() from various places.
When VLOOKUP finds a blank cell, it returns a '0', which doesn't work for me.
I've added an IF(ISBLANK), to return "", which is (I believe) an empty cell.
The problem is, this is still graphing as a zero. So it will be graphing along nicely, and then shoot down to zero and back up again.

Thanks!
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
You're using a formula to get the value from elsewhere, right? (Otherwise the cell would really be blank, and Excel by default doesn't chart blank cells.) Instead of using

=Sheet1!A1

in the cell, use a formula like

=IF(LEN(Sheet1!A1)=0,NA,Sheet1!A1)
 
Upvote 0

Forum statistics

Threads
1,216,109
Messages
6,128,875
Members
449,476
Latest member
pranjal9

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