If / Countif array formula in table with numbers, numbers with text, and text

willt201

New Member
Joined
Jun 26, 2018
Messages
2
Trying to count any number > 0.1 including numbers with an asterix infront of them, ignoring any text only entry.
So, if B1 = TOP, B17 will show how many values are > 0.1
I need to do this in a single formula and not by braking it down and creating/hiding extra colums of data.
Something along the lines of {=IF(B1="TOP",COUNTIF(ISNUMBER(SUBSTITUTE (B2:B15,"*","")),">0.1"),"")}, which is clearly beyond my abilities.
Thanks

ItemTOP
12.6
20.0
3*Ave
4Avr
5*0.1
6*Ave
7 *
8*0.2
9*7.8
10*6.4
110.1
1258.0
13
14154.2
Total204.4
Count>0.1

<tbody>
</tbody>
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Welcome to the Board.

Try

=SUM(IFERROR(IF(SUBSTITUTE(B2:B15,"*","")+0>0.1,1),0))

and confirm with Control+Shift+Enter.
 
Upvote 0
This regular formula seems to work...
Code:
B17: =IF(B1="TOP",SUMPRODUCT(--ISNUMBER(1/(--SUBSTITUTE(B2:B15,"*","")>0.1))),"")

Is that something you can work with?
 
Upvote 0

Forum statistics

Threads
1,215,615
Messages
6,125,854
Members
449,266
Latest member
davinroach

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