Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This is some sample data:
LOB BC# Bank BK-1 Bank BK-1 Bank BK-2 Bank BK-1 FPPS FP-1 FPPS FP-1 How do I count the number of UNIQUE BC#'s per LOB? AKA...Bank=2, FPPS = 1 Thanks for your help!!!!!!!!!!!!! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way is a Pivot Table. See:
http://peltiertech.com/Excel/Pivots/pivotstart.htm -- Gary's Student gsnu200702 "paula k" wrote: This is some sample data: LOB BC# Bank BK-1 Bank BK-1 Bank BK-2 Bank BK-1 FPPS FP-1 FPPS FP-1 How do I count the number of UNIQUE BC#'s per LOB? AKA...Bank=2, FPPS = 1 Thanks for your help!!!!!!!!!!!!! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming that A2:B7 contains the data, let D2 and D3 contain Bank and
FPPS, then try... E2, copied down: =SUM(IF(FREQUENCY(IF($A$2:$A$7=D2,MATCH($B$2:$B$7, $B$2:$B$7,0)),ROW($A$2: $A$7)-ROW($A$2)+1),1)) ....confirmed with CONTROL+SHIFT+ENTER, not just ENTER. Hope this helps! In article , paula k wrote: This is some sample data: LOB BC# Bank BK-1 Bank BK-1 Bank BK-2 Bank BK-1 FPPS FP-1 FPPS FP-1 How do I count the number of UNIQUE BC#'s per LOB? AKA...Bank=2, FPPS = 1 Thanks for your help!!!!!!!!!!!!! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count of Unique Values in Table of data | Excel Discussion (Misc queries) | |||
Return Matched Numeric Values across Rows | Excel Worksheet Functions | |||
How to Sort by Count the Max nos of Unique text values in Pivot Ta | Excel Discussion (Misc queries) | |||
Using DCOUNTA to count only Unique values | Excel Worksheet Functions | |||
Count unique values | Excel Worksheet Functions |