Spill formulas with IF and OR

MiniFav

Board Regular
Joined
Mar 10, 2020
Messages
81
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

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
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,215,143
Messages
6,123,282
Members
449,094
Latest member
GoToLeep

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