How to get count of each field by a query

BizBoy

Board Regular
Joined
Jul 26, 2012
Messages
118
Hi,

I am writing below query to get distinct of designation from a table.
How do I get count for each designation by editing this query.

For example, one of the field is 'Manager' and count for managers is 70.
How to get count 70 for manager by editing this query.

SELECT DISTINCT Designation
FROM directory
ORDER BY Designation;

Can anyone help me in this please.
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Well, Manager is not included in your original query, so you cannot get it from there.
What exactly are you trying to count, the number of distinct managers, or the number of distinct designations?
 
Upvote 0
Hi Joe,

Sorry for making it confusing.
I am trying to get count of distinct designations.

For example, in my table, I have 2 designations, KTM and Yamaha.
Total KTM in the table are 10 and Yamaha is 20 times.

Distinct will give me values as KTM and Yamaha, however, I need my query to return KTM, Yamaha in one column and 10,20 in next column.
How do I do this.

Have a nice day ahead. :)
 
Upvote 0
If you want to count the number of instances of each, then you do not want to use DISTINCT (which will weed out all the duplicates occurrences of the value, so your counts would be 1).
Try this:
Code:
[COLOR=#333333]SELECT Designation, Count(Designation)[/COLOR]
[COLOR=#333333]FROM directory[/COLOR]
[COLOR=#333333]GROUP BY Designation;[/COLOR]
 
Upvote 0
Hi Joe,
Thanks for the help.
It is working great.

I need help for below 2 question. Please help only if you get time.
I am trying to Google the same. This is not urgent for me.

1) When I run this query, header of total column is reflecting as 'Exper1001'.
How can we change this field name.

2) I am using below query to get the results.

SELECT Designation, Count(Designation)
FROM Combine
WHERE MyDate = #4/10/2018#
GROUP BY Designation;

MyDate is the first field of table Combine.
This query is giving me result.
Field 1 is Designation
Field 2 is count for 4/10/2018

Is it possible to get details for multiple dates in one query.
For example field 2 will be for 4/10/2018, field 3 will be for 4/9/2018 and so on.

Thanks for help. Have a nice day ahead.
 
Last edited:
Upvote 0
You can give the calculated field any name you wish, like this:
Code:
[COLOR=#333333]SELECT Designation, Count(Designation)[/COLOR][COLOR=#ff0000] as MyCount[/COLOR]
[COLOR=#333333]FROM Combine[/COLOR]
[COLOR=#333333]WHERE MyDate = #4/10/2018#[/COLOR]
[COLOR=#333333]GROUP BY Designation;[/COLOR]

This query is known as an "Aggregate" or "Totals" query. In these type of queries, you have two types of fields:
- fields that you "Group" your data on
- fields that you perform some Aggregate function on (like COUNT, SUM, MAX, MIN, ...)

So, if you want to group by more fields, just add that field to the SELECT and GROUP BY clauses, i.e.
Code:
[COLOR=#333333]SELECT Designation, [/COLOR][COLOR=#ff0000]MyDate[/COLOR][COLOR=#333333], Count(Designation)[/COLOR]as MyCount
[COLOR=#333333]FROM Combine[/COLOR]
[COLOR=#333333]GROUP BY Designation, [/COLOR][COLOR=#ff0000]MyDate[/COLOR][COLOR=#333333];[/COLOR]
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,487
Members
448,967
Latest member
visheshkotha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top