Basic ISBLANK problem

Shales

Board Regular
Joined
Aug 8, 2006
Messages
171
Office Version
  1. 365
Platform
  1. Windows
Hi,

Struggling to get a formula to work, could do with some help please?

This is the formula I am using =IF(ISBLANK(I5:T5),H5,0)

Even though my (I5:T5) is blank it is not returning the number in H5. I just get a 0.00

Any suggestions?

Thanks
Gavin
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
ISBLANK can't test multiple cells. Also, if I5:T5 have any formulas in them, ISBLANK wouldn't work anyway.

Try:

=IF(COUNTIF(I5:T5,"")>0,H5,0)
 
Upvote 0
Hi,

Struggling to get a formula to work, could do with some help please?

This is the formula I am using =IF(ISBLANK(I5:T5),H5,0)

Even though my (I5:T5) is blank it is not returning the number in H5. I just get a 0.00

Any suggestions?

Thanks
Gavin
You're referring to an array of cells with ISBLANK(I5:T5).

So, do you want the result to be returned if EVERY cell in the range is blank or if ANY cell is blank?
 
Upvote 0

Forum statistics

Threads
1,224,595
Messages
6,179,798
Members
452,943
Latest member
Newbie4296

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