PCG, thank-you for the welcome and thanks to both you and Kevin for responding. I've tried both formulas alone and in combination with the one I've been using and still not able to get the expected results for all cases.
In the sample both are placed alongside of mine in D. I know that for the formula I'm using it is evaluating correctly in D3, but it does not give me the desired response. A blank response and one with a 0 value don't agree. PCG, your formula in column F corrected my problem but cause 2 blanks to evaluate to 0 instead of 1.
Sheet1
<TABLE style="PADDING-RIGHT: 2pt; PADDING-LEFT: 2pt; FONT-SIZE: 10pt; FONT-FAMILY: Arial,Arial; BACKGROUND-COLOR: #ffffff" cellSpacing=0 cellPadding=0 border=1><COLGROUP><COL style="FONT-WEIGHT: bold; WIDTH: 30px"><COL style="WIDTH: 57px"><COL style="WIDTH: 76px"><COL style="WIDTH: 76px"><COL style="WIDTH: 52px"><COL style="WIDTH: 56px"><COL style="WIDTH: 52px"></COLGROUP><TBODY><TR style="FONT-WEIGHT: bold; FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center"><TD></TD><TD>A</TD><TD>B</TD><TD>C</TD><TD>D</TD><TD>E</TD><TD>F</TD></TR><TR style="HEIGHT: 44px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">1</TD><TD style="FONT-WEIGHT: bold">QuesNo</TD><TD style="FONT-WEIGHT: bold">Response1</TD><TD style="FONT-WEIGHT: bold">Response2</TD><TD style="FONT-WEIGHT: bold; TEXT-ALIGN: center" colSpan=3>Agreement
1 (True), 0 (False)
</TD></TR><TR style="HEIGHT: 22px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">2</TD><TD style="TEXT-ALIGN: left">1.1a</TD><TD></TD><TD></TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">1</TD><TD style="BACKGROUND-COLOR: #ff99cc"></TD><TD style="BACKGROUND-COLOR: #ff99cc; TEXT-ALIGN: right">0</TD></TR><TR style="HEIGHT: 22px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">3</TD><TD style="TEXT-ALIGN: left">1.1b</TD><TD></TD><TD style="TEXT-ALIGN: right">0</TD><TD style="BACKGROUND-COLOR: #ff99cc; TEXT-ALIGN: right">1</TD><TD style="BACKGROUND-COLOR: #ff99cc"></TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">0</TD></TR><TR style="HEIGHT: 22px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">4</TD><TD style="TEXT-ALIGN: left">1.1c</TD><TD></TD><TD style="TEXT-ALIGN: right">1</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">0</TD><TD style="BACKGROUND-COLOR: #ff99cc"></TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">0</TD></TR><TR style="HEIGHT: 22px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">5</TD><TD style="TEXT-ALIGN: left">1.1d</TD><TD style="TEXT-ALIGN: right">0</TD><TD style="TEXT-ALIGN: right">0</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">1</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">1</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">1</TD></TR><TR style="HEIGHT: 22px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">6</TD><TD style="TEXT-ALIGN: left">1.2a</TD><TD style="TEXT-ALIGN: right">1</TD><TD style="TEXT-ALIGN: right">0</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">0</TD><TD style="BACKGROUND-COLOR: #ff99cc; TEXT-ALIGN: right">1</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">0</TD></TR><TR style="HEIGHT: 22px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">7</TD><TD style="TEXT-ALIGN: left">1.2b</TD><TD style="TEXT-ALIGN: right">2</TD><TD style="TEXT-ALIGN: right">1</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">0</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">0</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">0</TD></TR><TR style="HEIGHT: 22px"><TD style="FONT-SIZE: 8pt; BACKGROUND-COLOR: #cacaca; TEXT-ALIGN: center">8</TD><TD style="TEXT-ALIGN: left">1.2c</TD><TD style="TEXT-ALIGN: right">3</TD><TD style="TEXT-ALIGN: right">3</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">1</TD><TD style="BACKGROUND-COLOR: #ff99cc; TEXT-ALIGN: right">0</TD><TD style="BACKGROUND-COLOR: #ccffcc; TEXT-ALIGN: right">1</TD></TR></TBODY></TABLE>
<TABLE style="FONT-SIZE: 10pt; BORDER-LEFT-COLOR: #00ff00; BORDER-BOTTOM-COLOR: #00ff00; COLOR: #000000; BORDER-TOP-STYLE: groove; BORDER-TOP-COLOR: #00ff00; FONT-FAMILY: Arial; BORDER-RIGHT-STYLE: groove; BORDER-LEFT-STYLE: groove; BACKGROUND-COLOR: #fffcf9; BORDER-RIGHT-COLOR: #00ff00; BORDER-BOTTOM-STYLE: groove"><TBODY><TR><TD>
Spreadsheet Formulas</TD></TR><TR><TD><TABLE style="FONT-SIZE: 9pt; FONT-FAMILY: Arial" cellSpacing=0 cellPadding=2 border=1><TBODY><TR style="FONT-SIZE: 10pt; BACKGROUND-COLOR: #cacaca"><TD>Cell</TD><TD>Formula</TD></TR><TR><TD>D2</TD><TD>=IF(B2=C2,1,0)</TD></TR><TR><TD>E2</TD><TD>=IF(OR
(ISBLANK(B2),ISBLANK(C2)),"",IF
(OR(B2=0,C2=0),1,0))</TD></TR><TR><TD>F2</TD><TD>=IF(AND
(COUNT(B2,C2)=2,B2=C2),1,0)</TD></TR><TR><TD>D3</TD><TD>=IF(B3=C3,1,0)</TD></TR><TR><TD>E3</TD><TD>=IF(OR
(ISBLANK(B3),ISBLANK(C3)),"",IF
(OR(B3=0,C3=0),1,0))</TD></TR><TR><TD>F3</TD><TD>=IF(AND
(COUNT(B3,C3)=2,B3=C3),1,0)</TD></TR><TR><TD>D4</TD><TD>=IF(B4=C4,1,0)</TD></TR><TR><TD>E4</TD><TD>=IF(OR
(ISBLANK(B4),ISBLANK(C4)),"",IF
(OR(B4=0,C4=0),1,0))</TD></TR><TR><TD>F4</TD><TD>=IF(AND
(COUNT(B4,C4)=2,B4=C4),1,0)</TD></TR><TR><TD>D5</TD><TD>=IF(B5=C5,1,0)</TD></TR><TR><TD>E5</TD><TD>=IF(OR
(ISBLANK(B5),ISBLANK(C5)),"",IF
(OR(B5=0,C5=0),1,0))</TD></TR><TR><TD>F5</TD><TD>=IF(AND
(COUNT(B5,C5)=2,B5=C5),1,0)</TD></TR><TR><TD>D6</TD><TD>=IF(B6=C6,1,0)</TD></TR><TR><TD>E6</TD><TD>=IF(OR
(ISBLANK(B6),ISBLANK(C6)),"",IF
(OR(B6=0,C6=0),1,0))</TD></TR><TR><TD>F6</TD><TD>=IF(AND
(COUNT(B6,C6)=2,B6=C6),1,0)</TD></TR><TR><TD>D7</TD><TD>=IF(B7=C7,1,0)</TD></TR><TR><TD>E7</TD><TD>=IF(OR
(ISBLANK(B7),ISBLANK(C7)),"",IF
(OR(B7=0,C7=0),1,0))</TD></TR><TR><TD>F7</TD><TD>=IF(AND
(COUNT(B7,C7)=2,B7=C7),1,0)</TD></TR><TR><TD>D8</TD><TD>=IF(B8=C8,1,0)</TD></TR><TR><TD>E8</TD><TD>=IF(OR
(ISBLANK(B8),ISBLANK(C8)),"",IF
(OR(B8=0,C8=0),1,0))</TD></TR><TR><TD>F8</TD><TD>=IF(AND
(COUNT(B8,C8)=2,B8=C8),1,0)</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
Excel tables to the web >> http://www.excel-jeanie-html.de/index.php?f=1" target="_blank"> Excel Jeanie HTML 4