To make it more complicated, this was exported from an access database
from a multiple-choice survey. The other values are things like "1-2"
"3-4", and "5+". They are not numeric as far as the computer is
concerned.
I have Office 2003 available, but I really don't want to use it if it
possible to do it in Office 97. I am going to need to have a
PowerPoint that can be opened on an old laptop running Windows 98, and
it would be nice to be able to open everything on that laptop instead
of just the PowerPoint. These results are going to be put into a Word
document as well.
If there is a way to get access to give me the total number of times
each survey question answer comes up instead, I'd appreciate it if
somebody told me. The multiple choice responses are in a lookup text
filed in the Access97 database. I just can't recall how to use Access
very well as I haven't done this since Office97 was current, although
they were talking about the upcoming Office2000.
to count the cells that are NOT Equal to o
=COUNTIF(C9:C28,"<>"&"o")
> "1-2"
> "3-4", and "5+". They are not numeric as far as the computer is
> concerned.
>
I'm not sure how you are going to sum these values .. other than
replacing them with numbers
so something like
=IF(cell = "3-4", 3, "another IF for another value") and so on
the you can use
SUMIF
--
etaf
------------------------------------------------------------------------
etaf's Profile: http://www.thecodecage.com/forumz/member.php?userid=1223
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=156359
[url="http://www.thecodecage.com"]Microsoft Office Help[/url]
This will sum (total) every C value whose corresponding B value is CAT and
corresponding A value is not O
=SUMPRODUCT(--(a1:a100<>"O"),--(B1:b100="CAT"))
This will count how many B values are CAT with corresponding A values that
are not O
For more details on SUMPRODUCT
Bob Phillips
http://www.xldynamic.com/source/xld.SUMPRODUCT.html
J.E McGimpsey
http://mcgimpsey.com/excel/formulae/doubleneg.html
Debra Dalgleish
http://www.contextures.com/xlFunctions04.html#SumProduct
best wishes
--
Bernard Liengme
http://people.stfx.ca/bliengme
Microsoft Excel MVP
"SlickRCBD" <slickr...@gmail.com> wrote in message
news:06b9c0a3-6fc7-4649...@k9g2000vbl.googlegroups.com...