Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default count unique entries across worksheets

I have a workbook with multiple worksheets. Each worksheet has a number of
text entries in a column. Some of the entries are repeated on more than one
worksheet. Is there a formula I can construct that will return the number of
unique text entries across the whole workbook instead of just one sheet?

Example:
Sheet 1
A
B
C
D

Sheet 2
B
E
F
G

Sheet 3
D
E
I
J

Unique entries = 9

What formula can I use to generate that '9'? Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bj bj is offline
external usenet poster
 
Posts: 1,397
Default count unique entries across worksheets

one of many passiblities would be
=countif('Sheet 1'!,A:A,"A")+countif('Sheet 2'!,A:A,"A")+countif('Sheet
3'!,A:A,"A")+

"globetrotter" wrote:

I have a workbook with multiple worksheets. Each worksheet has a number of
text entries in a column. Some of the entries are repeated on more than one
worksheet. Is there a formula I can construct that will return the number of
unique text entries across the whole workbook instead of just one sheet?

Example:
Sheet 1
A
B
C
D

Sheet 2
B
E
F
G

Sheet 3
D
E
I
J

Unique entries = 9

What formula can I use to generate that '9'? Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bj bj is offline
external usenet poster
 
Posts: 1,397
Default count unique entries across worksheets

also if you use seach for countif and 3d you find a good responce from Bob
Phillips to the question "Countif across multiple sheets" from gizmo63 in
april 06

"=SUMPRODUCT(COUNTIF(INDIRECT("'"&C1:C3&"'!C8"),"v alue"))

where C1:C3 is a range housing the relevant sheetnames in
separate cells."

I like his formula



"bj" wrote:

one of many passiblities would be
=countif('Sheet 1'!,A:A,"A")+countif('Sheet 2'!,A:A,"A")+countif('Sheet
3'!,A:A,"A")+

"globetrotter" wrote:

I have a workbook with multiple worksheets. Each worksheet has a number of
text entries in a column. Some of the entries are repeated on more than one
worksheet. Is there a formula I can construct that will return the number of
unique text entries across the whole workbook instead of just one sheet?

Example:
Sheet 1
A
B
C
D

Sheet 2
B
E
F
G

Sheet 3
D
E
I
J

Unique entries = 9

What formula can I use to generate that '9'? Thanks.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default count unique entries across worksheets

bj,

I'll check out what you posted, but doesn't 'countif' only recognize cells
with numbers? Mine are text entries.

"bj" wrote:

also if you use seach for countif and 3d you find a good responce from Bob
Phillips to the question "Countif across multiple sheets" from gizmo63 in
april 06

"=SUMPRODUCT(COUNTIF(INDIRECT("'"&C1:C3&"'!C8"),"v alue"))

where C1:C3 is a range housing the relevant sheetnames in
separate cells."

I like his formula



"bj" wrote:

one of many passiblities would be
=countif('Sheet 1'!,A:A,"A")+countif('Sheet 2'!,A:A,"A")+countif('Sheet
3'!,A:A,"A")+

"globetrotter" wrote:

I have a workbook with multiple worksheets. Each worksheet has a number of
text entries in a column. Some of the entries are repeated on more than one
worksheet. Is there a formula I can construct that will return the number of
unique text entries across the whole workbook instead of just one sheet?

Example:
Sheet 1
A
B
C
D

Sheet 2
B
E
F
G

Sheet 3
D
E
I
J

Unique entries = 9

What formula can I use to generate that '9'? Thanks.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bj bj is offline
external usenet poster
 
Posts: 1,397
Default count unique entries across worksheets

countif works with text

"globetrotter" wrote:

bj,

I'll check out what you posted, but doesn't 'countif' only recognize cells
with numbers? Mine are text entries.

"bj" wrote:

also if you use seach for countif and 3d you find a good responce from Bob
Phillips to the question "Countif across multiple sheets" from gizmo63 in
april 06

"=SUMPRODUCT(COUNTIF(INDIRECT("'"&C1:C3&"'!C8"),"v alue"))

where C1:C3 is a range housing the relevant sheetnames in
separate cells."

I like his formula



"bj" wrote:

one of many passiblities would be
=countif('Sheet 1'!,A:A,"A")+countif('Sheet 2'!,A:A,"A")+countif('Sheet
3'!,A:A,"A")+

"globetrotter" wrote:

I have a workbook with multiple worksheets. Each worksheet has a number of
text entries in a column. Some of the entries are repeated on more than one
worksheet. Is there a formula I can construct that will return the number of
unique text entries across the whole workbook instead of just one sheet?

Example:
Sheet 1
A
B
C
D

Sheet 2
B
E
F
G

Sheet 3
D
E
I
J

Unique entries = 9

What formula can I use to generate that '9'? Thanks.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default count unique entries across worksheets

bj,

I was able to answer my own previous question about number vs text entries.
Looking at the formula you gave and the one you referenced by Bob Phillips,
however, neither seem to count only the unique entries. They seem to count
all text entries instead. I'm not experienced with 3-D references, so I
can't easily decipher what Bob wrote. What am I missing?


"bj" wrote:

also if you use seach for countif and 3d you find a good responce from Bob
Phillips to the question "Countif across multiple sheets" from gizmo63 in
april 06

"=SUMPRODUCT(COUNTIF(INDIRECT("'"&C1:C3&"'!C8"),"v alue"))

where C1:C3 is a range housing the relevant sheetnames in
separate cells."

I like his formula



"bj" wrote:

one of many passiblities would be
=countif('Sheet 1'!,A:A,"A")+countif('Sheet 2'!,A:A,"A")+countif('Sheet
3'!,A:A,"A")+

"globetrotter" wrote:

I have a workbook with multiple worksheets. Each worksheet has a number of
text entries in a column. Some of the entries are repeated on more than one
worksheet. Is there a formula I can construct that will return the number of
unique text entries across the whole workbook instead of just one sheet?

Example:
Sheet 1
A
B
C
D

Sheet 2
B
E
F
G

Sheet 3
D
E
I
J

Unique entries = 9

What formula can I use to generate that '9'? Thanks.

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bj bj is offline
external usenet poster
 
Posts: 1,397
Default count unique entries across worksheets

I diddn't read your original posting correctly
I appologize

the simplest way may be to use a helper sheet where you use a formula or
just copy all of the signifcant data to the sheet.

advanced filter or a multiple of formulas can be used to get the unique list
count from this combined list


"globetrotter" wrote:

bj,

I was able to answer my own previous question about number vs text entries.
Looking at the formula you gave and the one you referenced by Bob Phillips,
however, neither seem to count only the unique entries. They seem to count
all text entries instead. I'm not experienced with 3-D references, so I
can't easily decipher what Bob wrote. What am I missing?


"bj" wrote:

also if you use seach for countif and 3d you find a good responce from Bob
Phillips to the question "Countif across multiple sheets" from gizmo63 in
april 06

"=SUMPRODUCT(COUNTIF(INDIRECT("'"&C1:C3&"'!C8"),"v alue"))

where C1:C3 is a range housing the relevant sheetnames in
separate cells."

I like his formula



"bj" wrote:

one of many passiblities would be
=countif('Sheet 1'!,A:A,"A")+countif('Sheet 2'!,A:A,"A")+countif('Sheet
3'!,A:A,"A")+

"globetrotter" wrote:

I have a workbook with multiple worksheets. Each worksheet has a number of
text entries in a column. Some of the entries are repeated on more than one
worksheet. Is there a formula I can construct that will return the number of
unique text entries across the whole workbook instead of just one sheet?

Example:
Sheet 1
A
B
C
D

Sheet 2
B
E
F
G

Sheet 3
D
E
I
J

Unique entries = 9

What formula can I use to generate that '9'? Thanks.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Count unique entries... ChuckF Excel Worksheet Functions 5 October 12th 06 05:48 AM
Count Unique Entries SouthCarolina Excel Worksheet Functions 4 April 14th 06 11:44 PM
Count unique entries Cash Excel Discussion (Misc queries) 4 April 4th 06 09:44 PM
Count unique entries BeSmart Excel Worksheet Functions 7 August 30th 05 12:53 PM
Count of unique entries slang Excel Discussion (Misc queries) 4 July 3rd 05 06:45 AM


All times are GMT +1. The time now is 10:11 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"