Need Help combining worksheets into a summary.

deewilly

New Member
Joined
Feb 6, 2005
Messages
2
I need to have data gathered by several different users (approximately 100) using the same worksheet that includes totals and percentages. After the information is gathered I need to combine them into a summary page. Can anyone tell me to the best way to accomplish this?
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
If you have the same worksheet being used by everyone, you should be able to copy and paste values from one worksheet to another.

If you post some more detail, someone will surely help you.
:biggrin:
 
Upvote 0
I'm planning on sending a formatted workbook (only 1 sheet) out via e-mail to several managers. The workbook will include several columns and rows (columns of vendors we used, rows of equipment we buy from each). The columns wil be totalled and have a percentage of the total equipment in each column also. Each of the managers will be returning these workbooks to me via e-mail and I'd like to know if there is an easy way to import the their totals into a summary, without having to cut and past.
 
Upvote 0
How about detaching their worksheets into a folder (e.g. c:\junk), naming them 1.xls, 2.xls, etc, and then running a macro like this:

Sub macro10()
Dim counter As Integer
ChDir "c:\junk"
counter = 1
Do Until counter = 100
With Application.FileSearch
.NewSearch
.LookIn = "c:\junk"
.SearchSubFolders = False
.Filename = counter & ".xls"
.MatchAllWordForms = True
.FileType = msoFileTypeAllFiles
If .Execute() <> 0 Then
On Error GoTo Skip
Workbooks.Open Filename:="C:\junk\" & counter & ".xls"
[b65536].End(xlUp).Select
Range(ActiveCell, ActiveCell.Offset(0, 1)).Copy
Windows(2).Activate
[b65536].End(xlUp).Offset(1, 0).PasteSpecial (xlValues)
Windows(2).Close
End If
Skip:
counter = counter + 1

End With
Loop
End Sub
 
Upvote 0

Forum statistics

Threads
1,203,741
Messages
6,057,097
Members
444,905
Latest member
Iamtryingman

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top