Spill formulas with IF and OR

MiniFav

Board Regular
Joined
Mar 10, 2020
Messages
83
Office Version
  1. 365
Platform
  1. Windows
I have the table below, looking to create a spill formula which will simply tell me if a numeric value is in any of the three columns B,C,D.
However with the spill formula currently in use as soon as one row is true then all become true. Is this a limitation to spill formulas or is there a solution to this?

Book1
ABCDEF
1NAMEDATEHOURSCYCLESTRUE/FALSEWhat I expect to see
2abc10TRUETRUE
3def10TRUETRUE
4
5ghiTRUEFALSE
6jkl28/09/2023TRUETRUE
7mnoTRUEFALSE
Sheet1
Cell Formulas
RangeFormula
E2:E10E2=IF(A2:A10>"",IF(OR(ISNUMBER(B2:B10),ISNUMBER(C2:C10),ISNUMBER(D2:D10)),TRUE,FALSE),"")
Dynamic array formulas.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
OR returns one result, not an array of them. Try:

Excel Formula:
=IF(A2:A10>"",IF(ISNUMBER(B2:B10)+ISNUMBER(C2:C10)+ISNUMBER(D2:D10),TRUE,FALSE),"")
 
Upvote 1
Solution
OR returns one result, not an array of them. Try:

Excel Formula:
=IF(A2:A10>"",IF(ISNUMBER(B2:B10)+ISNUMBER(C2:C10)+ISNUMBER(D2:D10),TRUE,FALSE),"")
Thank you for the quick response! This works great.
 
Upvote 0

Forum statistics

Threads
1,223,630
Messages
6,173,454
Members
452,514
Latest member
cjkelly15

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