Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 49
Default Summary sheet with text entries.

Hello,

I have a workbook with 235+ pages and counting. The pages are named Sheet1,
Sheet2, etc. to keep it simple.

I need to know how to find out if the word 'yes' was entered into the same
specific cell (B43) on each sheet and have the total number of times this
occured show on my summary sheet, automatically updating as data is entered
and new sheets are created. Is this possible?

Thank you,

tgcali
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Summary sheet with text entries.

Hi,

This is a bit long winded for all those sheets but I don't know of any other
way without resorting to a macro, perhaps someone else does.

Make a list of all the sheets in a column then select that list and

Insert|name|Define and call it (say) Sheets

Then enter this formula
=SUMPRODUCT(COUNTIF(INDIRECT("'"&sheets&"'!B43")," Yes"))

Mike

"tgcali" wrote:

Hello,

I have a workbook with 235+ pages and counting. The pages are named Sheet1,
Sheet2, etc. to keep it simple.

I need to know how to find out if the word 'yes' was entered into the same
specific cell (B43) on each sheet and have the total number of times this
occured show on my summary sheet, automatically updating as data is entered
and new sheets are created. Is this possible?

Thank you,

tgcali

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 49
Default Summary sheet with text entries.

I'm sorry, but how do you mean to make a list? Manually, validation, I don't
understand. I do appreciate your help greatly!

"Mike H" wrote:

Hi,

This is a bit long winded for all those sheets but I don't know of any other
way without resorting to a macro, perhaps someone else does.

Make a list of all the sheets in a column then select that list and

Insert|name|Define and call it (say) Sheets

Then enter this formula
=SUMPRODUCT(COUNTIF(INDIRECT("'"&sheets&"'!B43")," Yes"))

Mike

"tgcali" wrote:

Hello,

I have a workbook with 235+ pages and counting. The pages are named Sheet1,
Sheet2, etc. to keep it simple.

I need to know how to find out if the word 'yes' was entered into the same
specific cell (B43) on each sheet and have the total number of times this
occured show on my summary sheet, automatically updating as data is entered
and new sheets are created. Is this possible?

Thank you,

tgcali

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Summary sheet with text entries.

Hi,

As an afterthought perhaps not so long winded. To get your list of your
worksheets, right click any sheet, view code and paste this in to get a list
of all sheet names in column A from a1 down.

Sub namem()
x = 1
For Each Worksheet In ThisWorkbook.Worksheets
Cells(x, 1).Value = Worksheet.Name
x = x + 1
Next
End Sub

Mike

"Mike H" wrote:

Hi,

This is a bit long winded for all those sheets but I don't know of any other
way without resorting to a macro, perhaps someone else does.

Make a list of all the sheets in a column then select that list and

Insert|name|Define and call it (say) Sheets

Then enter this formula
=SUMPRODUCT(COUNTIF(INDIRECT("'"&sheets&"'!B43")," Yes"))

Mike

"tgcali" wrote:

Hello,

I have a workbook with 235+ pages and counting. The pages are named Sheet1,
Sheet2, etc. to keep it simple.

I need to know how to find out if the word 'yes' was entered into the same
specific cell (B43) on each sheet and have the total number of times this
occured show on my summary sheet, automatically updating as data is entered
and new sheets are created. Is this possible?

Thank you,

tgcali

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 49
Default Summary sheet with text entries.

Ok, I tried that. I think I just don't get this. I can't seem to make it
work. Thank you for your help though.

"Mike H" wrote:

Hi,

As an afterthought perhaps not so long winded. To get your list of your
worksheets, right click any sheet, view code and paste this in to get a list
of all sheet names in column A from a1 down.

Sub namem()
x = 1
For Each Worksheet In ThisWorkbook.Worksheets
Cells(x, 1).Value = Worksheet.Name
x = x + 1
Next
End Sub

Mike

"Mike H" wrote:

Hi,

This is a bit long winded for all those sheets but I don't know of any other
way without resorting to a macro, perhaps someone else does.

Make a list of all the sheets in a column then select that list and

Insert|name|Define and call it (say) Sheets

Then enter this formula
=SUMPRODUCT(COUNTIF(INDIRECT("'"&sheets&"'!B43")," Yes"))

Mike

"tgcali" wrote:

Hello,

I have a workbook with 235+ pages and counting. The pages are named Sheet1,
Sheet2, etc. to keep it simple.

I need to know how to find out if the word 'yes' was entered into the same
specific cell (B43) on each sheet and have the total number of times this
occured show on my summary sheet, automatically updating as data is entered
and new sheets are created. Is this possible?

Thank you,

tgcali



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 49
Default Summary sheet with text entries.

I'm sorry. I'm a little dense today. I got it! Thanks so much. I really
appreciate it.

"tgcali" wrote:

Ok, I tried that. I think I just don't get this. I can't seem to make it
work. Thank you for your help though.

"Mike H" wrote:

Hi,

As an afterthought perhaps not so long winded. To get your list of your
worksheets, right click any sheet, view code and paste this in to get a list
of all sheet names in column A from a1 down.

Sub namem()
x = 1
For Each Worksheet In ThisWorkbook.Worksheets
Cells(x, 1).Value = Worksheet.Name
x = x + 1
Next
End Sub

Mike

"Mike H" wrote:

Hi,

This is a bit long winded for all those sheets but I don't know of any other
way without resorting to a macro, perhaps someone else does.

Make a list of all the sheets in a column then select that list and

Insert|name|Define and call it (say) Sheets

Then enter this formula
=SUMPRODUCT(COUNTIF(INDIRECT("'"&sheets&"'!B43")," Yes"))

Mike

"tgcali" wrote:

Hello,

I have a workbook with 235+ pages and counting. The pages are named Sheet1,
Sheet2, etc. to keep it simple.

I need to know how to find out if the word 'yes' was entered into the same
specific cell (B43) on each sheet and have the total number of times this
occured show on my summary sheet, automatically updating as data is entered
and new sheets are created. Is this possible?

Thank you,

tgcali

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
How can i copy data from a tabbed working sheet to a summary sheet StephenF Excel Discussion (Misc queries) 1 March 15th 07 03:40 PM
Sheet-to-sheet auto-entries of text Ken Johnson Excel Worksheet Functions 0 May 3rd 06 08:38 PM
SPREADSHEET SUMMARY MACRO REMOVING BLANK ENTRIES piper New Users to Excel 1 March 10th 06 09:24 PM
Counting Unique text entries in a sheet with a condition Mike Excel Worksheet Functions 5 October 4th 05 11:56 AM
Summary of Max Hourly entries Al Excel Worksheet Functions 0 June 23rd 05 08:55 PM


All times are GMT +1. The time now is 04:44 AM.

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

About Us

"It's about Microsoft Excel"