Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Converting COUNTIFS to 2003 format

I have the following function in an Excel 2007 workbook and it works well.

=COUNTIFS(Articles!E3:E55,"Quality of
Products",Articles!M3:M55,"0")+COUNTIFS(Articles! F3:F55,"Quality of
Products",Articles!M3:M55,"0")

How would I convert it to a format that would work in the 2003 version?

What I am trying to do is search the E and F columns for one of five topics
and count the number of times that it returns a positive score in the M
column. Separately, I count the negative resoponses so that I can chart the
number of positives and negatives for each of the five topics. If someone
has a better way to do this I would love to hear it.

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,118
Default Converting COUNTIFS to 2003 format

Try this:
=SUMPRODUCT((((Articles!E3:E55="Quality of Products")+
(Articles!F3:F55="Quality of Products"))0)*(Articles!M3:M550))


Is that something you can work with?
Post back if you have more questions.

Regards,

Ron
Microsoft MVP - Excel

"JMVenhaus" wrote in message
...
I have the following function in an Excel 2007 workbook and it works well.

=COUNTIFS(Articles!E3:E55,"Quality of
Products",Articles!M3:M55,"0")+COUNTIFS(Articles! F3:F55,"Quality of
Products",Articles!M3:M55,"0")

How would I convert it to a format that would work in the 2003 version?

What I am trying to do is search the E and F columns for one of five
topics
and count the number of times that it returns a positive score in the M
column. Separately, I count the negative resoponses so that I can chart
the
number of positives and negatives for each of the five topics. If someone
has a better way to do this I would love to hear it.

Thanks


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Converting COUNTIFS to 2003 format

SUMPRODUCT((Articles!E3:E55,"Quality of
Products")*(Articles!M3:M55,"0"))+SUMPRODUCT((Art icles!F3:F55,"Quality of
Products")*(Articles!M3:M55,"0"))


"JMVenhaus" wrote:

I have the following function in an Excel 2007 workbook and it works well.

=COUNTIFS(Articles!E3:E55,"Quality of
Products",Articles!M3:M55,"0")+COUNTIFS(Articles! F3:F55,"Quality of
Products",Articles!M3:M55,"0")

How would I convert it to a format that would work in the 2003 version?

What I am trying to do is search the E and F columns for one of five topics
and count the number of times that it returns a positive score in the M
column. Separately, I count the negative resoponses so that I can chart the
number of positives and negatives for each of the five topics. If someone
has a better way to do this I would love to hear it.

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Converting COUNTIFS to 2003 format

or...

=SUMPRODUCT((Articles!E3:F55,"Quality of Products")*(Articles!M3:M55,0))


"JMVenhaus" wrote:

I have the following function in an Excel 2007 workbook and it works well.

=COUNTIFS(Articles!E3:E55,"Quality of
Products",Articles!M3:M55,"0")+COUNTIFS(Articles! F3:F55,"Quality of
Products",Articles!M3:M55,"0")

How would I convert it to a format that would work in the 2003 version?

What I am trying to do is search the E and F columns for one of five topics
and count the number of times that it returns a positive score in the M
column. Separately, I count the negative resoponses so that I can chart the
number of positives and negatives for each of the five topics. If someone
has a better way to do this I would love to hear it.

Thanks

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Converting COUNTIFS to 2003 format

Ignored this one.

"Teethless mama" wrote:

SUMPRODUCT((Articles!E3:E55,"Quality of
Products")*(Articles!M3:M55,"0"))+SUMPRODUCT((Art icles!F3:F55,"Quality of
Products")*(Articles!M3:M55,"0"))


"JMVenhaus" wrote:

I have the following function in an Excel 2007 workbook and it works well.

=COUNTIFS(Articles!E3:E55,"Quality of
Products",Articles!M3:M55,"0")+COUNTIFS(Articles! F3:F55,"Quality of
Products",Articles!M3:M55,"0")

How would I convert it to a format that would work in the 2003 version?

What I am trying to do is search the E and F columns for one of five topics
and count the number of times that it returns a positive score in the M
column. Separately, I count the negative resoponses so that I can chart the
number of positives and negatives for each of the five topics. If someone
has a better way to do this I would love to hear it.

Thanks



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Converting COUNTIFS to 2003 format

I need coffee
here is the correction...

=SUMPRODUCT((Articles!E3:F55="Quality of Products")*(Articles!M3:M550))


"Teethless mama" wrote:

or...

=SUMPRODUCT((Articles!E3:F55,"Quality of Products")*(Articles!M3:M55,0))


"JMVenhaus" wrote:

I have the following function in an Excel 2007 workbook and it works well.

=COUNTIFS(Articles!E3:E55,"Quality of
Products",Articles!M3:M55,"0")+COUNTIFS(Articles! F3:F55,"Quality of
Products",Articles!M3:M55,"0")

How would I convert it to a format that would work in the 2003 version?

What I am trying to do is search the E and F columns for one of five topics
and count the number of times that it returns a positive score in the M
column. Separately, I count the negative resoponses so that I can chart the
number of positives and negatives for each of the five topics. If someone
has a better way to do this I would love to hear it.

Thanks

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,118
Default Converting COUNTIFS to 2003 format

=SUMPRODUCT((Articles!E3:F55="Quality of Products")*(Articles!M3:M550))

Don't know if this is an issue....but, if the cells in the
same row of Col_E and Col_F both contain "Quality of Products",
that formula double-counts the row.

Regards,

Ron
Microsoft MVP - Excel

"Teethless mama" wrote in message
...
I need coffee
here is the correction...

=SUMPRODUCT((Articles!E3:F55="Quality of Products")*(Articles!M3:M550))


"Teethless mama" wrote:

or...

=SUMPRODUCT((Articles!E3:F55,"Quality of Products")*(Articles!M3:M55,0))


"JMVenhaus" wrote:

I have the following function in an Excel 2007 workbook and it works
well.

=COUNTIFS(Articles!E3:E55,"Quality of
Products",Articles!M3:M55,"0")+COUNTIFS(Articles! F3:F55,"Quality of
Products",Articles!M3:M55,"0")

How would I convert it to a format that would work in the 2003 version?

What I am trying to do is search the E and F columns for one of five
topics
and count the number of times that it returns a positive score in the M
column. Separately, I count the negative resoponses so that I can
chart the
number of positives and negatives for each of the five topics. If
someone
has a better way to do this I would love to hear it.

Thanks


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Countifs equiv in 2003 Dan Excel Discussion (Misc queries) 6 August 26th 09 08:30 AM
translating countifs function to Excel 2003 ridgeback Excel Worksheet Functions 4 April 29th 08 10:18 PM
COUNTIFS for 2003 Tromba Excel Worksheet Functions 4 April 13th 08 08:24 PM
Converting a time format to a String format in Excel Bill Partridge Excel Discussion (Misc queries) 3 October 3rd 07 11:48 AM
excel's new countifs...on 2003? AndyBrown Excel Discussion (Misc queries) 1 July 20th 06 04:20 PM


All times are GMT +1. The time now is 10:35 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"