Spreadsheets

K

Kelly Johns

I am creating a spreadsheet, and would like to produce some statistics from it. How do i get data from two different columns one word one numeric.

I.e

Name Age Gender Initial/Review Mother attended
jahd 12 M Initial Y
jshh 14 F Review Y
kajd 13 M Initial N
kasl 12 M Review Y


I would like to know if the mother attended the initial reviews. What would the formula be?




EggHeadCafe - Software Developer Portal of Choice
C# Email With Attachment / Upload / Validation
http://www.eggheadcafe.com/tutorial...f2-59b545ced4fd/c--email-with-attachment.aspx
 
P

Paul C

in Excel 2007 you could use COUNTIFS and simply count the attended column if
it is Y and the Review Column is initial

=COUNTIFS(d1:D10,"Initial",E1:e10,"Y")

you can also use a sumproduct formula (this will work in Excel 2003)

=sumproduct(--(D1:D10)="Initial",--(E1:e10="Y"))
 
R

Rick Rothstein

Unless I read the OP's post incorrectly, I think your formula should be
this...

=SUMPRODUCT((D1:D10="Initial")*(E1:E10="Y"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Match Column and copy to cell Column D 1
?? 1
Simple I think 3
Project Server and DNS 1
Calcualting hours 6
Sum multiple vlookup returns across multiple columns 2
Excel query insert 1
Excel 2007 Charting 0

Top