Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a way to do a unique count in Access? For instance if I have the
following loads in a table: 236592 236592 2010968 2010951 I can use the Count(*) function but I will get 4 lds. I want to get 3 loads. Appreciate any help. Thanks, Carrie |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You might get more help by posting this question in the Access forum, as
opposed to this one (the Excel forum). -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "carrie" wrote: Is there a way to do a unique count in Access? For instance if I have the following loads in a table: 236592 236592 2010968 2010951 I can use the Count(*) function but I will get 4 lds. I want to get 3 loads. Appreciate any help. Thanks, Carrie |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Use the SQL query..
select distinct(id) from table1; If this post helps click Yes --------------- Jacob Skaria "carrie" wrote: Is there a way to do a unique count in Access? For instance if I have the following loads in a table: 236592 236592 2010968 2010951 I can use the Count(*) function but I will get 4 lds. I want to get 3 loads. Appreciate any help. Thanks, Carrie |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Use this select count(uniquesa) as "Distinct values" from ( select distinct numbers as [uniquesa] from <your table ) Numbers is the column heading. Hope this helps. -- Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com "carrie" wrote in message ... Is there a way to do a unique count in Access? For instance if I have the following loads in a table: 236592 236592 2010968 2010951 I can use the Count(*) function but I will get 4 lds. I want to get 3 loads. Appreciate any help. Thanks, Carrie |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count unique dates within each unique ID | Excel Worksheet Functions | |||
Count if unique | Excel Worksheet Functions | |||
count unique | Excel Worksheet Functions | |||
Attempting to sort unique/only count first record in each unique g | Excel Discussion (Misc queries) | |||
getting unique records similar to the primary key in access | Excel Worksheet Functions |