Using ISBLANK on a range of cells

shanec7401

New Member
Joined
May 9, 2011
Messages
9
Hi

I want my formula to check a range of cells (D111:D132) in a separate worksheet called Graphs and if these are blank to return no value.
I tried the following but it didnt work (the last section is just simple division)

=IF(Graphs!(ISBLANK(D111:D132)),"",Graphs!D104/Graphs!D105)

I am obviously doing something wrong here.
Anyone can help me?
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
If you want to restrict if all blank cells:

=IF(COUNTA(Graphs!D111:D132)=0,"",Graphs!D104/Graphs!D105)

But this does depend on what you have in D111:D132 and what you mean by blanks - if the blank is the result of a formula (ie ="") then COUNTA won't work.
 
Upvote 0

Forum statistics

Threads
1,224,559
Messages
6,179,517
Members
452,921
Latest member
BBQKING

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