Analysis countif?

xxsalahxx

Active Member
Joined
Jun 25, 2011
Messages
314
Office Version
  1. 2007
Hello
I have a spreadsheet that has a median column in it (Column J on a data sheet) on my analysis sheet im trying to count if scores in column J in my data sheet are over a 3 and i want to include the blank cells in this column also.

Ive tried using =COUNTIF(Data!J:J,">3")*AND(J:J="","",J:J)
but cannot get this to add up, any suggestions?

Thanking you in advance
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
You can use:

=COUNTIF(Data!J:J,">3")+COUNTIF(Data!J:J,"")

but this will give you the problem where you are adding in the blanks where the data range does not extend to. I.e. if you have 5000 lines of data it will count the other 60,000 (excel 2003).

If you could have a zero or maybe a space instead you could modify to work.
 
Upvote 0
please do not whole range as it take long to count (unless you have to)
And as soggy sugested it will count all blanks in this column.
Excel Workbook
IJ
154
2*1
3**
4*33
5**
6*4
Sheet1



Excel Workbook
IJ
110485754
2*1
3**
4*33
5**
6*4
Sheet1
 
Upvote 0

Forum statistics

Threads
1,203,468
Messages
6,055,597
Members
444,800
Latest member
KarenTheManager

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