Question : Countif of a cell that has text

Wanted to count all cells BI:BM that have something in it based on cell D, see attached spreadsheet.  For example"

Wanted a count of how many cells BI:BM are populated that are related to 47 Upper in cell D.

The idea is to see how many discrepancies (columns BI:BM) are written against a part number in D column.
 

Answer : Countif of a cell that has text

This likely won't work if you have a repeating background.

You ultimately will want something like this [see attached code]:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<title>test </title>
	<style type="text/css">
		#myDiv{
			border: 1px solid red;
			background: #fff url('bg.jpg') no-repeat scroll 50% top;
			width: 100%;
			height: 400px;
		}
	</style>
</head>
<body>
	<div id="myDiv">
				
	</div>
</body>
</html>
Random Solutions  
 
programming4us programming4us