PC Review


Reply
Thread Tools Rate Thread

Creating a list of info in A1 cell in multiple worksheets

 
 
bosch711
Guest
Posts: n/a
 
      18th Nov 2009
How can I create a list of the info/contents in the A1 cell in multiple
worksheets? I am trying to create a summary worksheet of the data from 90
worksheets and would like to be able to list the headers in the A1 cell
vertically.
 
Reply With Quote
 
 
 
 
Luke M
Guest
Posts: n/a
 
      18th Nov 2009
'Right click on the summary sheet tab, and paste in this macro.
'Edit where appropriate:

Sub CreateSummary()
'Starting row for summary:
i = 1
For Each Sheet In ThisWorkbook.Sheets
If Sheet.Name <> Me.Name Then

'Control What column to place data in
Me.Cells(i, "A").Value = Sheet.Range("A1").Value
i = i + 1
End If
Next
End Sub

--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"bosch711" wrote:

> How can I create a list of the info/contents in the A1 cell in multiple
> worksheets? I am trying to create a summary worksheet of the data from 90
> worksheets and would like to be able to list the headers in the A1 cell
> vertically.

 
Reply With Quote
 
Bob Umlas
Guest
Posts: n/a
 
      18th Nov 2009
It's easy if the sheets are named sheet1, sheet2, etc:., otherwise you'd
probably need a macro. If the former case:
=INDIRECT("Sheet"&ROW(A2)&"!A1") and fill down - starting with A2 for the
2nd sheet else you'd get a circular reference on Sheet1.
HTH

"bosch711" <(E-Mail Removed)> wrote in message
news:8A6197BD-D97A-402F-B7E2-(E-Mail Removed)...
> How can I create a list of the info/contents in the A1 cell in multiple
> worksheets? I am trying to create a summary worksheet of the data from 90
> worksheets and would like to be able to list the headers in the A1 cell
> vertically.


 
Reply With Quote
 
bosch711
Guest
Posts: n/a
 
      18th Nov 2009
Luke,

I pasted the macro into the summary tab but I don't know what items to edit
to make it work. Any help would be MUCH appreciated.

Thanks
Bosch

"Luke M" wrote:

> 'Right click on the summary sheet tab, and paste in this macro.
> 'Edit where appropriate:
>
> Sub CreateSummary()
> 'Starting row for summary:
> i = 1
> For Each Sheet In ThisWorkbook.Sheets
> If Sheet.Name <> Me.Name Then
>
> 'Control What column to place data in
> Me.Cells(i, "A").Value = Sheet.Range("A1").Value
> i = i + 1
> End If
> Next
> End Sub
>
> --
> Best Regards,
>
> Luke M
> *Remember to click "yes" if this post helped you!*
>
>
> "bosch711" wrote:
>
> > How can I create a list of the info/contents in the A1 cell in multiple
> > worksheets? I am trying to create a summary worksheet of the data from 90
> > worksheets and would like to be able to list the headers in the A1 cell
> > vertically.

 
Reply With Quote
 
bosch711
Guest
Posts: n/a
 
      18th Nov 2009
Bob,

Thanks. I am changing my worksheet names because I have yet to get a macro
to work but your help below worked beautifully... Thank you!

"Bob Umlas" wrote:

> It's easy if the sheets are named sheet1, sheet2, etc:., otherwise you'd
> probably need a macro. If the former case:
> =INDIRECT("Sheet"&ROW(A2)&"!A1") and fill down - starting with A2 for the
> 2nd sheet else you'd get a circular reference on Sheet1.
> HTH
>
> "bosch711" <(E-Mail Removed)> wrote in message
> news:8A6197BD-D97A-402F-B7E2-(E-Mail Removed)...
> > How can I create a list of the info/contents in the A1 cell in multiple
> > worksheets? I am trying to create a summary worksheet of the data from 90
> > worksheets and would like to be able to list the headers in the A1 cell
> > vertically.

>
> .
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
multiple worksheets - getting data from same cell for a list noy Microsoft Excel Misc 3 31st Mar 2009 03:01 PM
Creating a log with info from worksheets...... =?Utf-8?B?a2l0a2F0cQ==?= Microsoft Excel Misc 0 26th Sep 2006 06:43 PM
Compile list of same cell from multiple worksheets =?Utf-8?B?UENha2Vz?= Microsoft Excel Worksheet Functions 7 17th Aug 2006 04:03 PM
Adding multiple info into one cell from a combo/list box =?Utf-8?B?UmhpYW4=?= Microsoft Access 4 20th Mar 2006 03:24 PM
Creating drop down list for multiple cell ranges =?Utf-8?B?QWFyb24gU2F1bGlzYmVycnk=?= Microsoft Excel Misc 2 1st May 2005 06:47 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:58 PM.