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 collecting fata from all sheets into one sheet

Dear all,

i have one worksheet divided into 20 tab( sheets) all sheets with the same
templates but for different users, but i want sheet 21 have all data from the
other sheets.
note: each sheet has a password for its user , so i need sheet 21 to be the
master sheet and updated at the same, if one user makes some changes on any
record,this should automatically reflected in sheet 21 .
plz plz help ASAP
--
with regards
L.B
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
jon jon is offline
external usenet poster
 
Posts: 13
Default collecting fata from all sheets into one sheet

Hi Lana,
Thought I'd try to help you whilst I'm waiting for someone to help me out.

In your master sheet, click in field A1 (or where ever you want to show the
data) then press =, then click user1's sheet and click the A1 field and
press return.
When you return to your master sheet, field A1 will have the value of field
A1 from user1's sheet.
Alternatively you can just enter the reference manually so if user1's sheet
is called sheet1 then enter =Sheet1!A1 in your master sheet to see the value
in A1 from user1.
Hope that makes sense.

I'm not sure how password protection works, so this may hinder my answer.

Jon








"lana.b" .(dontspam) wrote in message
...
Dear all,

i have one worksheet divided into 20 tab( sheets) all sheets with the same
templates but for different users, but i want sheet 21 have all data from
the
other sheets.
note: each sheet has a password for its user , so i need sheet 21 to be
the
master sheet and updated at the same, if one user makes some changes on
any
record,this should automatically reflected in sheet 21 .
plz plz help ASAP
--
with regards
L.B


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default collecting Data from all sheets into one sheet

Thank so much Jon
let me try it and i 'll refer back to u.


--
with regards
L.B


"jon" wrote:

Hi Lana,
Thought I'd try to help you whilst I'm waiting for someone to help me out.

In your master sheet, click in field A1 (or where ever you want to show the
data) then press =, then click user1's sheet and click the A1 field and
press return.
When you return to your master sheet, field A1 will have the value of field
A1 from user1's sheet.
Alternatively you can just enter the reference manually so if user1's sheet
is called sheet1 then enter =Sheet1!A1 in your master sheet to see the value
in A1 from user1.
Hope that makes sense.

I'm not sure how password protection works, so this may hinder my answer.

Jon








"lana.b" .(dontspam) wrote in message
...
Dear all,

i have one worksheet divided into 20 tab( sheets) all sheets with the same
templates but for different users, but i want sheet 21 have all data from
the
other sheets.
note: each sheet has a password for its user , so i need sheet 21 to be
the
master sheet and updated at the same, if one user makes some changes on
any
record,this should automatically reflected in sheet 21 .
plz plz help ASAP
--
with regards
L.B



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default collecting Data from all sheets into one sheet

I have done a similar thing for various inputs and secured them.

I would attach the file if I knew how.



"lana.b" wrote:

Thank so much Jon
let me try it and i 'll refer back to u.


--
with regards
L.B


"jon" wrote:

Hi Lana,
Thought I'd try to help you whilst I'm waiting for someone to help me out.

In your master sheet, click in field A1 (or where ever you want to show the
data) then press =, then click user1's sheet and click the A1 field and
press return.
When you return to your master sheet, field A1 will have the value of field
A1 from user1's sheet.
Alternatively you can just enter the reference manually so if user1's sheet
is called sheet1 then enter =Sheet1!A1 in your master sheet to see the value
in A1 from user1.
Hope that makes sense.

I'm not sure how password protection works, so this may hinder my answer.

Jon








"lana.b" .(dontspam) wrote in message
...
Dear all,

i have one worksheet divided into 20 tab( sheets) all sheets with the same
templates but for different users, but i want sheet 21 have all data from
the
other sheets.
note: each sheet has a password for its user , so i need sheet 21 to be
the
master sheet and updated at the same, if one user makes some changes on
any
record,this should automatically reflected in sheet 21 .
plz plz help ASAP
--
with regards
L.B



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default collecting fata from all sheets into one sheet

I have something similar for my coins collection.
Many worksheets and then I join all them in one named "Master List"
Try this code:

Sub Summarize()
Dim ws As Worksheet
Dim lastRng As Range
Application.ScreenUpdating = False ' speed up code

ThisWorkbook.Sheets("Master
List").Range("B2:M65536").ClearContents 'clear

For Each ws In ThisWorkbook.Worksheets
Set lastRng = ThisWorkbook.Sheets("Master
List").Range("b65536").End(xlUp).Offset(1, 0)

Select Case ws.Name
Case "Master List" 'exlude
'do nothing
Case "Folha1"
Case Else
ws.Activate

'copy data from individual sheets
Range("A250", Range("X65536").End(xlUp)).Copy lastRng

End Select
Next
Application.CutCopyMode = False 'clear clipboard
Application.ScreenUpdating = True
Sheets("Master List").Activate
Cells.Select
End Sub


lana.b escreveu:
Dear all,

i have one worksheet divided into 20 tab( sheets) all sheets with the same
templates but for different users, but i want sheet 21 have all data from the
other sheets.
note: each sheet has a password for its user , so i need sheet 21 to be the
master sheet and updated at the same, if one user makes some changes on any
record,this should automatically reflected in sheet 21 .
plz plz help ASAP

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
collecting data from multiple sheets Cindy E Excel Discussion (Misc queries) 2 March 10th 08 07:57 PM
collecting data from many sheets to one sheet Khoshravan Excel Discussion (Misc queries) 12 June 7th 07 10:01 PM
collecting data from one sheet to another d_kight Excel Discussion (Misc queries) 0 October 12th 06 07:06 PM
Collecting the names from other sheet for print Irshad Alam Excel Discussion (Misc queries) 0 March 6th 06 07:49 AM
in VBA Sheets("mysheet").Copy Befo=Sheets(1) how do i get a reference to the newly created copy of this sheet? Daniel Excel Worksheet Functions 1 July 6th 05 09:57 PM


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