Tagged Questions
The countif tag has no wiki summary.
22
votes
3answers
31k views
SQL Equivalent of COUNTIF()
I'm building a query with a GROUP BY clause that needs the ability to count records based only on a certain condition (field value is equal to 1).
SELECT
UID, COUNT(UID) AS TotalRecords, ...
3
votes
2answers
64 views
calculating values in excel using sumproduct
I've tried sumproduct and i've tried sumif but I think what I need is a combination (or a better understanding of sumproduct)
Here is my data
state | percent
NSW | 0
NSW | 20
VIC | ...
2
votes
1answer
115 views
How to compare literals in COUNTIF
Named lists in an excel sheet are referenced from another sheet on the same book.
E.g.
Sheet 2 has the named lists(GRPCNT) contain strings
> 5
5 - 9
10 - 20
> 20
Sheet 1 uses GRPCNT to ...
2
votes
1answer
1k views
How do I count wildcard characters using Excel COUNTIF?
How do I count the number of cells that contain the string "A*" - without treating the star as a wildcard character?
1
vote
0answers
37 views
Excel table calculation is sloooow - how to optimize this table
There's a primary table in a worksheet, which is the raw data in which users insert data daily. From that table, we extract necessary data for the purpose of reporting (IE statistics) from that raw ...
1
vote
4answers
62 views
Is there an excel function that returns a range of values based on a condition?
To better illustrate what I am looking for I will give an example. Imagine a spreadsheet with two columns, Priority and Value.
P V
H x
H x
M x
M y
I want to count the number of 'x' in ...
1
vote
2answers
153 views
Edit excel countifs
I want to edit this query
=COUNTIFS('Sheet1'!E2:E465,7,'Sheet1'!F2:F465,2)
so that when I drag/copy it sideways, as in, next cell to the right the 2 stays constant and the 7 increments like
...
0
votes
1answer
117 views
Excel VBA store countifs for multiple or conditions
I am using VBA Countifs to get the count of certain values according to the condition. Now I need either condition to count.
The below code work for count "No Video" rows and Non "No video" rows. ...
0
votes
1answer
67 views
How to embed calculation into COUNTIF function in Excel?
My data looks like below:
A B
1 0
1 0
0 1
0 1
How can I count the number that in the same row column A are greater than column B without adding another column which is the subtracted value ...
0
votes
4answers
864 views
Multiple conditions in excel 2002
I am using excel 2002 to create a spreadsheet. What I am trying to do is use the countif function but I have more than one condition. So I have 2 columns with a list of numbers and what I want to say ...