PC Review


Reply
Thread Tools Rate Thread

Data aggregation with multiple workbooks

 
 
Kadco
Guest
Posts: n/a
 
      10th May 2010
I am currently setting up a workbook. In this workbook I have a data input
sheet where people would fill out information. Multiple people will be
filling out this worksheet. What is the best way to aggregate the data among
multiple workbooks.
--
Kad
 
Reply With Quote
 
 
 
 
SteAXA
Guest
Posts: n/a
 
      12th May 2010
I think i would do, in every workbooks, a function that opens the common
workbook, reads data and closes the common workbook like this:

Sub ReadCommonDataInOtherworkbook()
Dim vaFileName
Dim DataRead

'i block the screen updating, so the users don't realize what happen
Application.ScreenUpdating = False

'i open my common workbook
Workbooks.Open Filename:="c:\tmp\xxxx.xls"
'i set my focus in common workbook
Windows("xxxx.xls").Activate
'i set focus on the cell that i want and i take data
Range("A1").Select
DataRead = ActiveCell.Value
'i close my common workbook
ActiveWindow.Close

'i unblock the screen updating
Application.ScreenUpdating = True

MsgBox DataRead

End Sub

Ste'

"Kadco" wrote:

> I am currently setting up a workbook. In this workbook I have a data input
> sheet where people would fill out information. Multiple people will be
> filling out this worksheet. What is the best way to aggregate the data among
> multiple workbooks.
> --
> Kad

 
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
Data aggregation with multiple workbooks Kadco Microsoft Excel Misc 1 10th May 2010 10:19 PM
Data aggregation with multiple workbooks Kadco Microsoft Excel Setup 0 3rd May 2010 09:54 PM
copying a range of data multiple times from multiple workbooks sot Microsoft Excel Programming 1 23rd Nov 2009 10:21 PM
Sum data from multiple Workbooks. Steve Microsoft Excel Programming 1 14th Jan 2009 05:11 AM
etract unique data from multiple workbooks after extracting data kkirank.kmp@gmail.com Microsoft Excel Programming 3 27th Dec 2007 06:56 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:53 PM.