Formula Question

drock99a

Board Regular
Joined
Mar 31, 2004
Messages
58
I am making a report of problem calls we recieve in the help desk. Each month I give a report of these calls. Is there a formula out there that can tell the user the top problem of the month by looking at the problem field in table1?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Depends. If the problem field is just a whole wodge of text, it would be tedious to search for key words and rank them. If you have a list of options to choose from without free-form text, it can be easily handled with a query. A bit more info, and we may be able to get you started.

Denis
 
Upvote 0
The information I am wanting to pull is location numbers. The location number is located in table1 in the LocID field. These numbers consist of four to five digits that define that particular location.
 
Upvote 0
Why not just use a count?

Eg

SELECT TOP 5 [Table1].[LocID], Count([Table1].[LocID]) AS [CountOfLocID]
FROM [Table1]
GROUP BY [Table1].[LocID]
ORDER BY Count([Table1].[LocID]) DESC;
 
Upvote 0

Forum statistics

Threads
1,221,704
Messages
6,161,390
Members
451,701
Latest member
ckrings

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