Computers & Internet Logo

Related Topics:

Posted on Apr 27, 2009

Countifs solution for excel 2000

=COUNTIFS(List!$O$2:$O$328;"<>YES";List! $G$2:$G$328;"<>Y";List!$E$2:$E$328;"<>DONE";List!$E$2:$E$328;"<>FIN";List!$F$2:$F$328;"<>AOL";List!$F$2:$F$328;"<>NO";List!$F$2:$F$328;"<>ON";List!$T$2:$T$328;"<>YES") how do i do this in excel 2000? Thanks! Eddy W

1 Answer

Anonymous

Level 1:

An expert who has achieved level 1.

  • Contributor 1 Answer
  • Posted on May 08, 2009
Anonymous
Contributor
Level 1:

An expert who has achieved level 1.

Joined: May 08, 2009
Answers
1
Questions
0
Helped
203
Points
1

=SUMPRODUCT(--(List!$O$2:$O$328<>"YES"),--(List!$G$2:$G$328<>"Y"),--(List!$E$2:$E$328<>"DONE"),--(List!$E$2:$E$328<>"FIN"),--(List!$F$2:$F$328<>"AOL"),--(List!$F$2:$F$328<>"NO"),--(List!$F$2:$F$328<>"ON"),--(List!$T$2:$T$328<>"YES"))

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

1helpful
1answer

Countifs formula

COUNTIF(range,criteria)
Counts the number of cells within a range that meet the given condition.
This COUNTIF formula appears to count only the Employees that have the value "F" in the designated container. ie. Female.
0helpful
1answer

Sum of the greatest run of negitive numbers

Hi, Not sure if this is what you have tried:
1: Assuming each run is on a different column
Run1 Run2 Run3 Run4, etc...and the maxium lenght of each column is 9 values, but each colum has a different lenght of numbers..
Then you can use:
=MAX(COUNTIF(A2:A10,"<>0"),COUNTIF(B2:B10,"<>0"), {keep adding countif for each colum).

If all runs are on the same colum, then using Pivot tables is easier. If you have a copy of your data, please post it so that I can give you the exact formula ;)
0helpful
1answer

I need a macro to use in excel 2000 which simulates the countifs function completely

You need to write a for..next loop that loops through the range you would set in the COUNTIF function. In each iteration of that loop, do your comaprisin test. Declare a varialbe to hold the "count" so when the loop ends, you'll have a resulting value.
0helpful
1answer

Excel formula

Use the COUNTIF command. The COUNTIF command can count the criteria for a range of cells. Since you can only use it for one range of cells or criteria, you simply add another criteria to the formula as follows: =COUNTIF(AG1:AG5,"X")+COUNTIF(Sheet2!L1:L6,"X")
0helpful
1answer

Countifs

The formula in both versions is the same:

=countif(range,value)

i.e. The below formula will increase its count by one if any of the 18 cells it's checking are equal to 1.
=countif(A1:B9,1)
0helpful
1answer

Using * in a EXCEL functions

Correction to your code
=COUNTIF(M2,"*Fox*")

version of formula that will work
=IF(COUNTIF(M2,"*FOX*"),"yes","no")
0helpful
3answers

EXCEL FORMULA PC

The solution I've used in similar situations is to create a 3rd column C with the items in column A and column B concatenated.

C2 = A2 & B2
C3 = A3 & B3
C4 = A4 & B4
etc.

Then use COUNTIF function: =COUNTIF(C:C,"FredRed Ball")

Hope this helps.
0helpful
3answers

Excel Formula

Lets say your data (cars) is in range "D1:D21".

You need to know how many are Dodge and Ford in cell E1.

=COUNTIF(D1:D21,"Dodge") + COUNTIF(D1:D21,"Ford)

Hope this helps.
0helpful
1answer

Excel problem

Have you tried countif?

= countif(c:c, "Yes")

The "Yes" is CASE SENSITIVE!

You may also have to do a combo:

= count(b:b) - countif(c:c "<>'Yes'")

Wher the 'Yes' is in single quotes and the entire condition is in double quotes.
0helpful
1answer

Excel

See if this is possible using the COUNTIF formula in Excel. Example: My range is A1:A20. Lowest number being 1 and highest number being 20. To see how many are less than 10 I'd use: =COUNTIF(A1:A20,"<=10") To see how many are less than 20 but greater than 10 is a little different. (And this might be the crazy way). I do this: =SUM(COUNTIF(A1:A300,"<=20") - COUNTIF(A1:A300,"<=10")) Try this and see if it works for you. It seemed to work fine for me.
Not finding what you are looking for?

213 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

Brad Brown

Level 3 Expert

19187 Answers

Cindy Wells

Level 3 Expert

6688 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...