ISBLANK /MATCH array formulas not working...

BigDelGooner

Board Regular
Joined
Aug 17, 2009
Messages
197
Hi all

I need a formula to check if there is any value in cells V8:Y8 (the values will either be blank or *

I have tried using both of these array formulas (with Ctrl,Shft,Rtn) but am not getting the answers I am after.

=ISBLANK(V8:Y8)
=MATCH("*",V8:Y8,0)

When using the ISBLANK function it says FALSE even when all cells are empty...and when using the MATCH function it returns 1 even when all cells are empty.

I think I know what the issue is...I just dont know the resolution. These formulas work when used on completely empty cells, however the cells I am trying to use these on where they dont work includes formulas. The cell values are blank, but the ISBLANK and MATCH formulas seem to be looking within the formula rather than the cell value.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
If the cells contain formulas, then they are NOT blank.
Even formulas returning "" are not really blank, that is a null text string..

Instead of testing for blank, test for NOT blank, and reverse the logic

=COUNTIF(V8:Y8,"<>")>0

That's basically counting cells that are NOT Equal to ""
And the >0 says IF the result of the countif is Greater than 0, then True, else False.

Hope that helps.
 
Upvote 0

Forum statistics

Threads
1,215,900
Messages
6,127,640
Members
449,394
Latest member
fionalofthouse

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