Computers & Internet Logo

Related Topics:

A
Anonymous Posted on Jul 13, 2014

Countif formulas I am trying to count letters in designated time frames. This time frame has 5 letter codes in it. Why does this formula give me a date instead of a count? =COUNTIF(B5:B33,"F")+COUNTIF(B5:B33,"C")+COUNTIF(B5:B33,"A")+COUNTIF(B5:B33,"B")+COUNTIF(B5:B33,"D") gives me 1/5/1904

1 Answer

Summer Kerekes

Level 1:

An expert who has achieved level 1.

Problem Solver:

An expert who has answered 5 questions.

  • Contributor 5 Answers
  • Posted on Jul 17, 2014
Summer Kerekes
Contributor
Level 1:

An expert who has achieved level 1.

Problem Solver:

An expert who has answered 5 questions.

Joined: Oct 02, 2008
Answers
5
Questions
0
Helped
695
Points
4

Are you trying to find how many don't have a letter? If so you might try "COUNTA" instead of "COUNTIF". You could also try looking at the format of the cell your formula is in and change it to general or number.

2 Related Answers

Anonymous

  • 28 Answers
  • Posted on Feb 17, 2008

SOURCE: formula

What kind of function are you asking for and what software are you using?

Ad
rmeyer

Richard Meyer

  • 80 Answers
  • Posted on Nov 28, 2008

SOURCE: FORMULA TO COMPLETE A COUNT TO A PERCENTAGE

I am not sure but I was looking at this problem and I thought the equation should be reversed as I put it below. This gives a percetage of the entrys that are of the value 1 as it seems you are looking for.
=COUNTIF(A3:A74,"1")/COUNT(A3:A74)*100

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.
tip

HOW TO COUNT THE OCCURRENCES OF A TEXT STRING

In the cell that you want the result to appear in, enter the appropriate formula from the following examples.
How to Count the Occurrences of a Number
Use this formula
=SUM(IF(range=number,1,0))
where range is the range that you want to search, and number is the number that you want to count.
NOTE: This formula must be entered as an array formula. To enter an array formula, press CTRL+SHIFT+ENTER.
How to Count the Occurrences of a Text String
Method 1
Use this formula
=SUM(IF(range="text",1,0))
where range is the range that you want to search, and text is the text that you want to find (the text must be enclosed in quotation marks).
NOTE: The above formula must be entered as an array formula. To enter an array formula, press CTRL+SHIFT+ENTER.
Method 2
Use the COUNTIF() function to count the occurrences of a text string. For example, use the formula
=COUNTIF(range,"text")
where range is the range of cells that you are evaluating, and text is the text string that you want to count instances of (note that text must be enclosed in quotation marks).
NOTE: This formula must be entered as an array formula. To enter an array formula, press CTRL+SHIFT+ENTER.
Wildcard characters can be used within the COUNTIF function.
The asterisk character (*) represents more than one character. For example, to count all the cells in the range a1:a10 that contain an "x," you can use the following formula:
=COUNTIF(a1:a10,"*x*")
The question mark character (?) can also be used to represent one wildcard character -- for example, to count all cells in the range whose second character is the letter, such as "ax" or "bx."
=COUNTIF(a1:a10,"?x*")
1helpful
2answers

Hi, how do I find the 1st 2 letters in a cell and reference it to another. ie A1: 0209JJP001. I thus want to find "02" which is Feb (this would be a vlookup I assume). Therefore the 1st 2 letters...

To reference the first letters in a cell, use the left function. The syntax is =left(cell,#). So, to return the left two letters from cell A1, you use =left(a1,2). You can put that in a cell or incorporate it into some functions.
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
2answers

FORMULA TO COMPLETE A COUNT TO A PERCENTAGE

Apply the following:
COUNT(A3:A74)/COUNTIF(A3:A74,"1")*100 in order to obtain the percentage.
0helpful
1answer

Microsoft excel Formula

create a dummy column (columnC) containing columnA&columnB
use countif at columnD to count the number of observations per combination of columnA and columnB (in particular those with blank entries in columnB).
0helpful
2answers

Display calculation result in a previous cell

Look into the =SUMIF function, it sounds like this may be what you are looking for.

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
2answers

Formulas

You may want COUNTIF if you're specifying criteria. For instance, if my prices are found in b3 to b7, here's a formula that will find all those that are less than 6 ($6.00):

=COUNTIF(B3:B7, "<6")

If you're using multiple criteria, such as you want to find all the prices that are greater than $5 and less than $8, the following will accomplish it. (The ABS gives you the absolute value of the result, in case the smaller number is first.)

=ABS(SUM(COUNTIF(B3:B7, ">5") - COUNTIF(B3:B7, "<8")))
Not finding what you are looking for?

114 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...