#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3
Default Cope cells

I have 125 sheets with every sheet displayed in the same manner. Now I would
like to copy cell B2 (and some more cells) of every 125 sheets into one new
sheet (table). As it would take too much time to copy everything manually, i
would like to know if there is a quicker way?

hope anyone can help me,

Roog
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Cope cells

Sub roog()
i = 1
For Each w In Worksheets
If w.Name = "special" Then
Else
Sheets("special").Cells(i, 1).Value = w.Range("B2").Value
i = i + 1
End If
Next
End Sub

This copy the value in B2 in all the sheets and put them in a sheet named
"special"
--
Gary's Student
gsnu200704


"Roog" wrote:

I have 125 sheets with every sheet displayed in the same manner. Now I would
like to copy cell B2 (and some more cells) of every 125 sheets into one new
sheet (table). As it would take too much time to copy everything manually, i
would like to know if there is a quicker way?

hope anyone can help me,

Roog

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
Vlookup to cope with duplicates Mike H Excel Discussion (Misc queries) 2 September 17th 09 03:30 PM
Vlookup to cope with duplicates alexrs2k Excel Discussion (Misc queries) 1 September 17th 09 02:08 PM
Cope cells Roog Excel Discussion (Misc queries) 3 February 8th 07 06:33 PM
Is there a way MATCH() can cope with duplicate values? JimmyQ Excel Worksheet Functions 3 August 9th 06 11:25 PM
Cope worksheets and save to location ozcank[_15_] Excel Programming 2 June 24th 05 04:14 PM


All times are GMT +1. The time now is 07:36 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"