Excel Help Needed

Associate
Joined
2 Oct 2007
Posts
1,585
Location
Birmingham
ok guys dunno if anyone knows how to help me but here it goes....

my problem is for a call logging system i want to try and make.

Sheet 1 - This is where all customer details will be listed
i have managed to make the data validation list from sheet two where the list data is.
sheet1.jpg


Sheet 2 - This is where the drop down list data is
sheet2.jpg


Sheet 3 - This is where the call log results i want to be added up into the numbers section by what ever is resulting in the sheet one drop downs
sheet3.jpg
 
Ok say in sheet one if James and Peter were called and no one answered then i will choose "not answer" from the drop downs . then in sheet 3 i want it to show how many of which calls have been made
 
use data validation for the cell selection (answer, no answer etc

Then do a countif on the text string for the range of cells you want to count IF they match a string you specify (answer/no answer etc).

however you would need to edit the countif range if the range grows (or set it to as mucha s you think likely)
 
Last edited:
=COUNTIF(SHeet1!C2:CXXXX, "not answer")

remember text strings sit inside quotation marks. and you want to calcualte on a range - i.e more than one cell.

It will basically look at the range and count how many times(cells) it finds the string you specify.

Do this in 3 columns and if you have 3 choices in the validation drop down you got your 3 stats ;)
 
Last edited:
Back
Top Bottom