Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a column (within a database) containing hundreds of Project Numbers
(e.g., P8763, PA3229, P1090.1, etc.), and the same Project Number can appear more than once in the column. I need to count the number of unique Project Numbers within that column, based on the criteria of another column. Is there a way to do that using a combination of the DCOUNTA function and a formula? Any help would be greatly appreciated. Thanks. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Start here
http://www.j-walk.com/ss/excel/tips/tip52.htm -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... I have a column (within a database) containing hundreds of Project Numbers (e.g., P8763, PA3229, P1090.1, etc.), and the same Project Number can appear more than once in the column. I need to count the number of unique Project Numbers within that column, based on the criteria of another column. Is there a way to do that using a combination of the DCOUNTA function and a formula? Any help would be greatly appreciated. Thanks. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Ron,
Thanks for your suggestion. Unfortunately, there was no example (or solution) that counts unique cells (within a database) containing text at the URL you provided. Do you know of any other sites I can try? Thanks again. Bob "Ron de Bruin" wrote: Start here http://www.j-walk.com/ss/excel/tips/tip52.htm -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... I have a column (within a database) containing hundreds of Project Numbers (e.g., P8763, PA3229, P1090.1, etc.), and the same Project Number can appear more than once in the column. I need to count the number of unique Project Numbers within that column, based on the criteria of another column. Is there a way to do that using a combination of the DCOUNTA function and a formula? Any help would be greatly appreciated. Thanks. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
Try he http://www.cpearson.com/excel/duplic...CountingUnique Andy. "Bob" wrote in message ... Ron, Thanks for your suggestion. Unfortunately, there was no example (or solution) that counts unique cells (within a database) containing text at the URL you provided. Do you know of any other sites I can try? Thanks again. Bob "Ron de Bruin" wrote: Start here http://www.j-walk.com/ss/excel/tips/tip52.htm -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... I have a column (within a database) containing hundreds of Project Numbers (e.g., P8763, PA3229, P1090.1, etc.), and the same Project Number can appear more than once in the column. I need to count the number of unique Project Numbers within that column, based on the criteria of another column. Is there a way to do that using a combination of the DCOUNTA function and a formula? Any help would be greatly appreciated. Thanks. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Andy,
Thanks for your suggestion. Unfortunately , there was no example (or solution) that counts unique cells (within a DATABASE) containing text at the URL you provided. I need to use the DCOUNTA function. Do you know of any other sites I can try? Thanks again. Bob "Andy" wrote: Hi Try he http://www.cpearson.com/excel/duplic...CountingUnique Andy. "Bob" wrote in message ... Ron, Thanks for your suggestion. Unfortunately, there was no example (or solution) that counts unique cells (within a database) containing text at the URL you provided. Do you know of any other sites I can try? Thanks again. Bob "Ron de Bruin" wrote: Start here http://www.j-walk.com/ss/excel/tips/tip52.htm -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... I have a column (within a database) containing hundreds of Project Numbers (e.g., P8763, PA3229, P1090.1, etc.), and the same Project Number can appear more than once in the column. I need to count the number of unique Project Numbers within that column, based on the criteria of another column. Is there a way to do that using a combination of the DCOUNTA function and a formula? Any help would be greatly appreciated. Thanks. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Why would you need DCOUNTA?
-- Regards, Peo Sjoblom Excel 95 - Excel 2007 Northwest Excel Solutions www.nwexcelsolutions.com "It is a good thing to follow the first law of holes; if you are in one stop digging." Lord Healey "Bob" wrote in message ... Andy, Thanks for your suggestion. Unfortunately , there was no example (or solution) that counts unique cells (within a DATABASE) containing text at the URL you provided. I need to use the DCOUNTA function. Do you know of any other sites I can try? Thanks again. Bob "Andy" wrote: Hi Try he http://www.cpearson.com/excel/duplic...CountingUnique Andy. "Bob" wrote in message ... Ron, Thanks for your suggestion. Unfortunately, there was no example (or solution) that counts unique cells (within a database) containing text at the URL you provided. Do you know of any other sites I can try? Thanks again. Bob "Ron de Bruin" wrote: Start here http://www.j-walk.com/ss/excel/tips/tip52.htm -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... I have a column (within a database) containing hundreds of Project Numbers (e.g., P8763, PA3229, P1090.1, etc.), and the same Project Number can appear more than once in the column. I need to count the number of unique Project Numbers within that column, based on the criteria of another column. Is there a way to do that using a combination of the DCOUNTA function and a formula? Any help would be greatly appreciated. Thanks. |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this array formula
Count unique items in data(text, values, Formulas) =SUM(IF(LEN(data),1/COUNTIF(data,data))) -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... Ron, Thanks for your suggestion. Unfortunately, there was no example (or solution) that counts unique cells (within a database) containing text at the URL you provided. Do you know of any other sites I can try? Thanks again. Bob "Ron de Bruin" wrote: Start here http://www.j-walk.com/ss/excel/tips/tip52.htm -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... I have a column (within a database) containing hundreds of Project Numbers (e.g., P8763, PA3229, P1090.1, etc.), and the same Project Number can appear more than once in the column. I need to count the number of unique Project Numbers within that column, based on the criteria of another column. Is there a way to do that using a combination of the DCOUNTA function and a formula? Any help would be greatly appreciated. Thanks. |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Ron,
Thanks again, but I am looking for a solution that works in an Excel "database", and specifically, in conjunction with the DCOUNTA function. Bob "Ron de Bruin" wrote: Try this array formula Count unique items in data(text, values, Formulas) =SUM(IF(LEN(data),1/COUNTIF(data,data))) -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... Ron, Thanks for your suggestion. Unfortunately, there was no example (or solution) that counts unique cells (within a database) containing text at the URL you provided. Do you know of any other sites I can try? Thanks again. Bob "Ron de Bruin" wrote: Start here http://www.j-walk.com/ss/excel/tips/tip52.htm -- Regards Ron De Bruin http://www.rondebruin.nl "Bob" wrote in message ... I have a column (within a database) containing hundreds of Project Numbers (e.g., P8763, PA3229, P1090.1, etc.), and the same Project Number can appear more than once in the column. I need to count the number of unique Project Numbers within that column, based on the criteria of another column. Is there a way to do that using a combination of the DCOUNTA function and a formula? Any help would be greatly appreciated. Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Errors in COUNT, COUNTA, COUNTIF when counting merged cells | Excel Worksheet Functions | |||
Counting cells in Excel? | Excel Discussion (Misc queries) | |||
Counting cells, similar values | Excel Worksheet Functions | |||
Counting empty cells within a range of cells | New Users to Excel | |||
Counting empty cells within a range of cells | New Users to Excel |